Fixed notice never hiding.

This commit is contained in:
Ajay Ramachandran
2019-11-07 13:04:31 -05:00
parent fbeabc830b
commit a3214f0fa7
2 changed files with 2 additions and 2 deletions

View File

@@ -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;
}