From f81933fb595aa162d35bfb114613d3e3e44d526a Mon Sep 17 00:00:00 2001 From: gorhill Date: Thu, 21 May 2015 20:11:54 -0400 Subject: [PATCH] this fixes https://github.com/gorhill/uMatrix/commit/23aa1e79cb9b28df716e00ba793438cad2bc65d9#commitcomment-11318549 --- src/js/tab.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/tab.js b/src/js/tab.js index b040d97..91235a3 100644 --- a/src/js/tab.js +++ b/src/js/tab.js @@ -642,7 +642,7 @@ vAPI.tabs.registerListeners(); return false; } tabIdToTryCount[tabId] = count - 1; - tabIdToTimer[tabId] = vAPI.setTimeout(updateTitle.bind(µb, tabId), delay); + tabIdToTimer[tabId] = vAPI.setTimeout(updateTitle.bind(µm, tabId), delay); return true; };