Skip to content

Commit

Permalink
Merge pull request #168 from ajayyy/experimental-ajay
Browse files Browse the repository at this point in the history
Fixed notice never hiding
  • Loading branch information
ajayyy authored Nov 7, 2019
2 parents 4451664 + a3214f0 commit ae6d63c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion content.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "__MSG_fullName__",
"short_name": "__MSG_Name__",
"version": "1.1.9.1",
"version": "1.1.9.2",
"default_locale": "en",
"description": "__MSG_Description__",
"content_scripts": [
Expand Down

0 comments on commit ae6d63c

Please sign in to comment.