diff options
author | Ajay Ramachandran <[email protected]> | 2019-11-07 13:04:31 -0500 |
---|---|---|
committer | Ajay Ramachandran <[email protected]> | 2019-11-07 13:04:31 -0500 |
commit | a3214f0fa744a9f45cb7fa7efc423768e096aed1 (patch) | |
tree | 93cb37911fa627303be9dfcbfdbf39e853d0b908 /content.js | |
parent | fbeabc830b32bab5024105c61b02aee59588d45f (diff) | |
download | SponsorBlock-a3214f0fa744a9f45cb7fa7efc423768e096aed1.tar.gz SponsorBlock-a3214f0fa744a9f45cb7fa7efc423768e096aed1.zip |
Fixed notice never hiding.
Diffstat (limited to 'content.js')
-rw-r--r-- | content.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -83,7 +83,7 @@ chrome.storage.sync.get(["trackViewCount"], function(result) { //option renamed when new notice was made var dontShowNotice = false; chrome.storage.sync.get(["dontShowNotice"], function(result) { - let dontShowNoticeAgain = result.dontShowNoticeAgain; + let dontShowNoticeAgain = result.dontShowNotice; if (dontShowNoticeAgain != undefined) { dontShowNotice = dontShowNoticeAgain; } |