From dd3e346313b709c8e2f06771c40964cb963f3713 Mon Sep 17 00:00:00 2001 From: Lauchmelder Date: Wed, 30 Mar 2022 16:35:14 +0200 Subject: [PATCH] fixed onStartup inconsistency --- src/background.js | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/background.js b/src/background.js index 8def5a0..d3d3c84 100644 --- a/src/background.js +++ b/src/background.js @@ -131,9 +131,6 @@ const sync = () => // Get user level level = user.data.level - // If the users level is somehow larger than their max allowed level, set the flag - - // if users level is larger than max allowed level, abort if(level > user.data.subscription.max_level_granted) { @@ -141,7 +138,7 @@ const sync = () => return reject("User account level exceeds account level limit") } - // If the wanikani level differs from the local leve, update the cache + // If the wanikani level differs from the local level, update the cache if(level !== data.level) updateCache(data.token, data.level, level) @@ -165,4 +162,6 @@ chrome.runtime.onMessage.addListener((data, sender, sendResponse) => { }) // At browser start, sync with wanikani -sync().then(value => console.log(value)).catch(reason => {}) \ No newline at end of file +chrome.runtime.onStartup.addListener(() => { + sync().then(value => console.log(value)).catch(reason => {}) +}) \ No newline at end of file