From ce539b61a11224f4e08de2092906758772a714db Mon Sep 17 00:00:00 2001 From: Maks Snegov Date: Sat, 27 Apr 2024 22:48:07 -0700 Subject: [PATCH] Fix entering credentials --- scripts/content.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/content.js b/scripts/content.js index e0b69bb..0d61990 100644 --- a/scripts/content.js +++ b/scripts/content.js @@ -447,7 +447,7 @@ async function runner() { msg = 'Signing in attempt: ' + ctx.signinAttempts; console.log(msg) await chrome.storage.local.set({ "ctx_statusMsg": msg }); - let signedIn = await enterCredentials(); + let signedIn = await enterCredentials(cfg.username, cfg.password); ctx.signinAttempts += 1; await chrome.storage.local.set({ "ctx_signinAttempts": ctx.signinAttempts }); if (!signedIn) {