From 19013958c6a5c930857522f1c26fd9b9f2c531cb Mon Sep 17 00:00:00 2001 From: Mike Thomas Date: Wed, 28 Mar 2007 00:08:53 +0000 Subject: [PATCH] m.init_error only takes two args, and they're supposed to be the error description and the installation help URL. This was resulting in confusing error messages when getdown fails to do its update on Vista. --- src/java/com/threerings/getdown/launcher/Getdown.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/java/com/threerings/getdown/launcher/Getdown.java b/src/java/com/threerings/getdown/launcher/Getdown.java index 1617e20..c6a02e4 100644 --- a/src/java/com/threerings/getdown/launcher/Getdown.java +++ b/src/java/com/threerings/getdown/launcher/Getdown.java @@ -416,7 +416,7 @@ public abstract class Getdown extends Thread "m.missing_resource", MessageUtil.taint(msg), _ifc.installError); } else { msg = MessageUtil.compose( - "m.init_error", msg, MessageUtil.taint(msg), _ifc.installError); + "m.init_error", MessageUtil.taint(msg), _ifc.installError); } } updateStatus(msg);