Console: Remove plugin install success message (ticket #2494)

This commit is contained in:
zzz
2019-05-09 17:30:46 +00:00
parent fc8b55df27
commit de8a079cb4

View File

@ -128,11 +128,13 @@ class PluginUpdateRunner extends UpdateRunner {
_log.error("Error downloading plugin", t); _log.error("Error downloading plugin", t);
} }
} }
if (_updated) if (_updated) {
_mgr.notifyComplete(this, _newVersion, null); _mgr.notifyComplete(this, _newVersion, null);
else _mgr.notifyComplete(this, _errMsg);
} else {
_mgr.notifyTaskFailed(this, _errMsg, null); _mgr.notifyTaskFailed(this, _errMsg, null);
} }
}
/** /**
* Overridden to change the "Updating I2P" text in super * Overridden to change the "Updating I2P" text in super