weechat-protocol.js: fix hash table parsing

with-route-provider
Philippe Proulx 12 years ago
parent 187f22036b
commit bd4bfe0cb3
  1. 2
      js/weechat-protocol.js

@ -315,7 +315,7 @@ WeeChatProtocol.prototype = {
for (var i = 0; i < count; ++i) {
var key = self._runType(typeKeys);
var keyStr = self._objToString(key, typeKeys);
var value = self.runType(typeValues);
var value = self._runType(typeValues);
dict[keyStr] = value;
}

Loading…
Cancel
Save