浏览代码

Rename init to initialize

Also make sure to hash all localStorage keys
JC Brand 12 年之前
父节点
当前提交
a6fd9450a9
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      converse.js

+ 3 - 3
converse.js

@@ -1912,7 +1912,7 @@
         }
     };
 
-    xmppchat.init = function () {
+    xmppchat.initialize = function (connection) {
         this.connection = connection;
         this.connection.xmlInput = function (body) { console.log(body); };
         this.connection.xmlOutput = function (body) { console.log(body); };
@@ -1927,7 +1927,7 @@
 
         this.xmppstatus = new this.XMPPStatus({id:1});
         this.xmppstatus.localStorage = new Backbone.LocalStorage(
-            'converse.xmppstatus'+this.bare_jid);
+            hex_sha1('converse.xmppstatus-'+this.bare_jid));
 
         this.chatboxes.onConnected();
         this.rosterview = new this.RosterView({'model':this.roster});
@@ -1985,7 +1985,7 @@
 
         $(document).unbind('jarnxmpp.connected');
         $(document).bind('jarnxmpp.connected', $.proxy(function (ev, connection) {
-            this.init();
+            this.initialize(connection);
         }, this));
     }, xmppchat));