do not fail on lock file creation, when in silent=noupdate

This commit is contained in:
Myron Boyle
2019-02-25 14:47:33 +01:00
parent d24d12a6c4
commit 37659985ec
@@ -270,7 +270,7 @@ public abstract class Getdown extends Thread
// and force our UI to be recreated with the updated info
createInterfaceAsync(true);
}
if (!_app.lockForUpdates()) {
if (!_noUpdate && !_app.lockForUpdates()) {
throw new MultipleGetdownRunning();
}