Skip to content

Commit

Permalink
Merge pull request #132 from ator-dev/options-repair-on-init
Browse files Browse the repository at this point in the history
Always repair (sync) options on init
  • Loading branch information
ator-dev authored May 31, 2023
2 parents 3206266 + 2bd8d55 commit c8ce2d6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion manifest/chromium.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 3,
"name": "Mark My Search",
"description": "Highlight searched keywords. Find matches instantly.",
"version": "1.14.1",
"version": "1.14.2",

"icons": {
"16": "/icons/dist/mms-16.png",
Expand Down
2 changes: 1 addition & 1 deletion manifest/firefox.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 3,
"name": "Mark My Search",
"description": "Highlight searched keywords. Find matches instantly.",
"version": "1.14.1",
"version": "1.14.2",

"browser_specific_settings": { "gecko": { "id": "mark-my-search@searchmarkers.github.io" } },

Expand Down
2 changes: 1 addition & 1 deletion src/background.ts
Original file line number Diff line number Diff line change
Expand Up @@ -288,6 +288,7 @@ const updateActionIcon = (enabled?: boolean) =>
console.warn("TODO fix bookmark search engines check", error);
}
createContextMenuItems();
optionsRepair();
storageInitialize();
updateActionIcon();
};
Expand All @@ -298,7 +299,6 @@ const updateActionIcon = (enabled?: boolean) =>
chrome.tabs.create({ url: chrome.runtime.getURL("/pages/startpage.html") });
}
}
optionsRepair();
initialize();
};

Expand Down

0 comments on commit c8ce2d6

Please sign in to comment.