提交 2b1787d6 编写于 作者: I isidor

Provide feedback when check for updates has no updates

fixes #27531
上级 aae395f8
......@@ -302,6 +302,14 @@ export class LightUpdateContribution implements IGlobalActivity {
});
this.updateService.onError(err => messageService.show(severity.Error, err));
this.updateService.onUpdateNotAvailable(explicit => {
if (!explicit) {
return;
}
messageService.show(severity.Info, nls.localize('noUpdatesAvailable', "There are no updates currently available."));
});
}
getActions(): IAction[] {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册