Skip to content

Commit

Permalink
Always invoke start() function
Browse files Browse the repository at this point in the history
  • Loading branch information
Folyd committed Apr 22, 2023
1 parent 2c5f41e commit 16e8d3b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion extension/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -552,4 +552,8 @@ chrome.runtime.onInstalled.addListener(async ({ previousVersion, reason }) => {
}

await start()
});
});

(async () => {
await start();
})();

0 comments on commit 16e8d3b

Please sign in to comment.