Skip to content

Commit 3fe2f69

Browse files
committed
Revert "filter .DS_Store file from addons list"
This reverts commit bd0f192.
1 parent bd0f192 commit 3fe2f69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/src/addon_manager/commands/getAddons.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export default async (context: vscode.ExtensionContext) => {
3434
const CHUNK_SIZE = 30;
3535

3636
// Get list of addons and sort them alphabetically
37-
const addonList = Array.from(addonManager_service_1.default.addons.values()).filter(a => a.displayName !== '.DS_Store');
37+
const addonList = Array.from(addonManager.addons.values());
3838
addonList.sort((a, b) => a.displayName.localeCompare(b.displayName));
3939

4040
// Send addons to client in chunks

0 commit comments

Comments
 (0)