FIX: Incorrect key when checking for primary tab.

This commit is contained in:
Guo Xiang Tan 2015-12-12 11:43:43 +08:00
parent f3748ce0a9
commit 7bf4ebf2f6
1 changed files with 3 additions and 2 deletions

View File

@ -11,7 +11,8 @@ let lastAction = -1;
const focusTrackerKey = "focus-tracker"; const focusTrackerKey = "focus-tracker";
const idleThresholdTime = 1000 * 10; // 10 seconds const idleThresholdTime = 1000 * 10; // 10 seconds
const keyValueStore = new KeyValueStore("discourse_desktop_notifications_"); const context = "discourse_desktop_notifications_";
const keyValueStore = new KeyValueStore(context);
// Called from an initializer // Called from an initializer
function init(messageBus) { function init(messageBus) {
@ -60,7 +61,7 @@ function setupNotifications() {
window.addEventListener("storage", function(e) { window.addEventListener("storage", function(e) {
// note: This event only fires when other tabs setItem() // note: This event only fires when other tabs setItem()
const key = e.key; const key = e.key;
if (key !== focusTrackerKey) { if (key !== `${context}${focusTrackerKey}`) {
return true; return true;
} }
primaryTab = false; primaryTab = false;