We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd48897 commit 179049cCopy full SHA for 179049c
src/js/popup.js
@@ -168,7 +168,9 @@ async function authCredentials(event) {
168
authButton.classList.add('d-none')
169
errorAlert.classList.add('d-none')
170
await initPopup()
171
- await chrome.runtime.sendMessage('reload-options')
+ try {
172
+ await chrome.runtime.sendMessage('reload-options')
173
+ } catch (_) {} // eslint-disable-line no-empty
174
} else {
175
displayAlert({ message: 'Error Getting or Setting Credentials.' })
176
}
0 commit comments