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,10 +128,12 @@ class PluginUpdateRunner extends UpdateRunner {
_log.error("Error downloading plugin", t);
}
}
if (_updated)
if (_updated) {
_mgr.notifyComplete(this, _newVersion, null);
else
_mgr.notifyComplete(this, _errMsg);
} else {
_mgr.notifyTaskFailed(this, _errMsg, null);
}
}
/**