提交 c796df17 编写于 作者: R Ramya Achutha Rao

lowercase check between workspace recommendations and installed extensions Fixes #39332

上级 c628188d
......@@ -353,7 +353,7 @@ export class ExtensionTipsService extends Disposable implements IExtensionTipsSe
this.extensionsService.getInstalled(LocalExtensionType.User).done(local => {
const recommendations = allRecommendations
.filter(id => local.every(local => `${local.manifest.publisher}.${local.manifest.name}` !== id));
.filter(id => local.every(local => `${local.manifest.publisher.toLowerCase()}.${local.manifest.name.toLowerCase()}` !== id));
if (!recommendations.length) {
return;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册