Refactor ZenThemesImporter to streamline URL matching logic for improved readability

This commit is contained in:
mr. M
2025-02-22 09:53:24 +01:00
parent 8e316068ba
commit a16f311be7

View File

@@ -313,8 +313,5 @@ gZenActorsManager.addJSWindowActor('ZenThemeMarketplace', {
DOMContentLoaded: {},
},
},
matches: [
...Services.prefs.getStringPref('zen.injections.match-urls').split(','),
'about:preferences'
],
matches: [...Services.prefs.getStringPref('zen.injections.match-urls').split(','), 'about:preferences'],
});