提交 2b112854 编写于 作者: B Benjamin Pasero

Progress API: Can't create multiple progress notifications with the same title (fixes #46637)

上级 4831efe2
......@@ -563,6 +563,10 @@ export class NotificationViewItem implements INotificationViewItem {
}
public equals(other: INotificationViewItem): boolean {
if (this.hasProgress() || other.hasProgress()) {
return false;
}
if (this._source !== other.source) {
return false;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册