Skip to content

Commit

Permalink
Bug fix: First-time backup notification not appearing (issue #251)
Browse files Browse the repository at this point in the history
  • Loading branch information
aecreations committed Dec 20, 2018
1 parent fe2fd63 commit 64601ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wx-src/background.js
Expand Up @@ -451,7 +451,7 @@ function init()
setShortcutKeyPrefix(gPrefs.pasteShortcutKeyPrefix);
}

if (gPrefs.backupRemFirstRun) {
if (gPrefs.backupRemFirstRun && !gPrefs.lastBackupRemDate) {
browser.storage.local.set({
lastBackupRemDate: new Date().toString(),
});
Expand Down

0 comments on commit 64601ef

Please sign in to comment.