diff options
Diffstat (limited to 'src/popup.ts')
-rw-r--r-- | src/popup.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/popup.ts b/src/popup.ts index d2e763f4..d24721b0 100644 --- a/src/popup.ts +++ b/src/popup.ts @@ -281,7 +281,7 @@ async function runThePopup(messageListener?: MessageListener): Promise<void> { if (!Config.config.payments.freeAccess && !noRefreshFetchingChaptersAllowed()) values.push("freeChaptersAccess"); utils.asyncRequestToServer("GET", "/api/userInfo", { - userID: Config.config.userID, + publicUserID: await utils.getHash(Config.config.userID), values }).then((res) => { if (res.status === 200) { @@ -461,7 +461,7 @@ async function runThePopup(messageListener?: MessageListener): Promise<void> { } else { PageElements.videoFound.innerHTML = chrome.i18n.getMessage("segmentsStillLoading"); } - + PageElements.issueReporterImportExport.classList.remove("hidden"); } } |