Skip to content

Commit

Permalink
Always show plugin notification regardless of options (eclipse-theia#…
Browse files Browse the repository at this point in the history
…10399)

Fixes a bug introduced by eclipse-theia#10245 which prevented plugin notifications from being shown
  • Loading branch information
msujew authored and CareyJWilliams committed Jan 25, 2022
1 parent 7ca6035 commit b598aed
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions packages/plugin-ext/src/plugin/message-registry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,11 @@ export class MessageRegistryExt {
}
}
}
for (const item of rest) {
pushItem(item);
}
const actionHandle = await this.proxy.$showMessage(type, message, options, actions);
return actionHandle !== undefined ? items[actionHandle] : undefined;
}

for (const item of rest) {
pushItem(item);
}
const actionHandle = await this.proxy.$showMessage(type, message, options, actions);
return actionHandle !== undefined ? items[actionHandle] : undefined;
}
}

0 comments on commit b598aed

Please sign in to comment.