remove error log from first time sync

This commit is contained in:
Lauchmelder 2022-03-21 13:57:05 +01:00
parent 77fb392e80
commit 335d611e57
No known key found for this signature in database
GPG key ID: C2403C69D78F011D
2 changed files with 4 additions and 2 deletions

View file

@ -154,4 +154,4 @@ chrome.runtime.onMessage.addListener((data, sender, sendResponse) => {
}) })
// At browser start, sync with wanikani // At browser start, sync with wanikani
sync().then(value => console.log(value)).catch(reason => console.error(reason)) sync().then(value => console.log(value)).catch(reason => {})

View file

@ -47,8 +47,9 @@ chrome.storage.local.get(["level", "token", "enabled", "enabledVocab", "enabledK
kanjiSetting.checked = data.enabledKanji kanjiSetting.checked = data.enabledKanji
}) })
// Set the wanikani token // Submit button pressed
submitButton.addEventListener( "click", () => { submitButton.addEventListener( "click", () => {
// If the submit field has a new token, replace the current one with it
if(submitButton.classList.contains("new-token")) if(submitButton.classList.contains("new-token"))
{ {
chrome.storage.local.set({"token": inputField.value}) chrome.storage.local.set({"token": inputField.value})
@ -61,6 +62,7 @@ submitButton.addEventListener( "click", () => {
statusField.innerHTML = String.fromCodePoint(0x23F1) statusField.innerHTML = String.fromCodePoint(0x23F1)
// Sync with wanikani
chrome.runtime.sendMessage("", {type: "sync"}, response => { chrome.runtime.sendMessage("", {type: "sync"}, response => {
if(response.success) if(response.success)
{ {