summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--static/js/pichat.js2
-rw-r--r--static/js/pichat2.js2
-rw-r--r--static/js/src/userlist.js2
3 files changed, 3 insertions, 3 deletions
diff --git a/static/js/pichat.js b/static/js/pichat.js
index 2cee712..f678cc1 100644
--- a/static/js/pichat.js
+++ b/static/js/pichat.js
@@ -2248,7 +2248,7 @@ function linkReplaceWithoutImage(url){
return "<a target='_blank' href='" + linkUrl + "'>" + url + "</a>"
}
-var MUTES = localStorage['mutes']['nick'];
+var MUTES = localStorage['mutes'] || {};
$(".mute").live("click", function(){
$(this).removeClass("mute");
$(this).addClass("unmute");
diff --git a/static/js/pichat2.js b/static/js/pichat2.js
index 2cee712..f678cc1 100644
--- a/static/js/pichat2.js
+++ b/static/js/pichat2.js
@@ -2248,7 +2248,7 @@ function linkReplaceWithoutImage(url){
return "<a target='_blank' href='" + linkUrl + "'>" + url + "</a>"
}
-var MUTES = localStorage['mutes']['nick'];
+var MUTES = localStorage['mutes'] || {};
$(".mute").live("click", function(){
$(this).removeClass("mute");
$(this).addClass("unmute");
diff --git a/static/js/src/userlist.js b/static/js/src/userlist.js
index 7ca4344..9851ad8 100644
--- a/static/js/src/userlist.js
+++ b/static/js/src/userlist.js
@@ -1,4 +1,4 @@
-var MUTES = localStorage['mutes']['nick'];
+var MUTES = localStorage['mutes'] || {};
$(".mute").live("click", function(){
$(this).removeClass("mute");
$(this).addClass("unmute");