Skip to content

Commit

Permalink
fix(options): remove name condition for managed storage (#2028)
Browse files Browse the repository at this point in the history
  • Loading branch information
smalluban authored Nov 5, 2024
1 parent 1c284c0 commit be0b8ec
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/store/options.js
Original file line number Diff line number Diff line change
Expand Up @@ -200,11 +200,6 @@ let managed = __PLATFORM__ === 'chromium' && isOpera() ? false : null;
async function applyManagedOptions(options) {
if (managed === false) return options;

if (chrome.runtime.getManifest().short_name !== 'Ghostery Enterprise') {
managed = false;
return options;
}

if (managed === null) {
try {
managed = await chrome.storage.managed.get(null);
Expand Down

0 comments on commit be0b8ec

Please sign in to comment.