Skip to content
This repository was archived by the owner on Jun 5, 2025. It is now read-only.

Commit b383d88

Browse files
Show installed extension without reboot (#2372)
1 parent 139fbfb commit b383d88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Services/ExtensionService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ private async Task<bool> IsValidDevHomeExtension(Package package)
114114
if (package.Id.FullName == extension.Package.Id.FullName)
115115
{
116116
var (devHomeProvider, classId) = await GetDevHomeExtensionPropertiesAsync(extension);
117-
return devHomeProvider != null && classId.Count == 0;
117+
return devHomeProvider != null && classId.Count != 0;
118118
}
119119
}
120120

0 commit comments

Comments
 (0)