weechat-protocol.js: fix hash table parsing
This commit is contained in:
parent
187f22036b
commit
bd4bfe0cb3
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue