aboutsummaryrefslogtreecommitdiffhomepage
path: root/content.js
diff options
context:
space:
mode:
authorAjay Ramachandran <[email protected]>2019-11-07 13:04:31 -0500
committerAjay Ramachandran <[email protected]>2019-11-07 13:04:31 -0500
commita3214f0fa744a9f45cb7fa7efc423768e096aed1 (patch)
tree93cb37911fa627303be9dfcbfdbf39e853d0b908 /content.js
parentfbeabc830b32bab5024105c61b02aee59588d45f (diff)
downloadSponsorBlock-a3214f0fa744a9f45cb7fa7efc423768e096aed1.tar.gz
SponsorBlock-a3214f0fa744a9f45cb7fa7efc423768e096aed1.zip
Fixed notice never hiding.
Diffstat (limited to 'content.js')
-rw-r--r--content.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/content.js b/content.js
index f0db497b..f889e7d1 100644
--- a/content.js
+++ b/content.js
@@ -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;
}