Fixed *Manager error message glitch

This commit is contained in:
Federico Fissore 2015-04-09 12:12:40 +02:00
parent a7024791cd
commit 9b3ee714c7
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ public class InstallerJDialogUncaughtExceptionHandler implements Thread.Uncaught
@Override
public void uncaughtException(Thread t, final Throwable e) {
String errorMessage = _(e.getMessage().substring(e.getMessage().indexOf(":") + 2));
String errorMessage = _(e.getMessage().substring(e.getMessage().indexOf(":") + 1));
if (errorMessage.startsWith("Error downloading")) {
errorMessage = connectionErrorMessage;
}