-
-
Notifications
You must be signed in to change notification settings - Fork 345
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Keybind edit, show notice again, ignore rate limits #163
Conversation
…experimental-ajay
This reverts commit 047432a.
…experimental-ajay
…nsorBlock into experimental-ajay
var dontShowNotice = false; | ||
chrome.storage.sync.get(["dontShowNoticeAgain"], function(result) { | ||
chrome.storage.sync.get(["dontShowNotice"], function(result) { | ||
let dontShowNoticeAgain = result.dontShowNoticeAgain; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is wrong. Storage returns {dontShowNotice: true}
so result.dontShowNoticeAgain
is undefined and it shows the notice every time.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oops, I fixed this in popup.js but forgot here.
No description provided.