1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-25 04:16:38 +02:00

javascript: fix compilation with old V8 lib

This commit is contained in:
Sébastien Helleu
2015-03-08 10:56:58 +01:00
parent 148a571dce
commit a98c835716
+1 -1
View File
@@ -132,7 +132,7 @@ weechat_js_object_to_hashtable (Handle<Object> obj,
if (!hashtable)
return NULL;
keys = obj->GetOwnPropertyNames();
keys = obj->GetPropertyNames();
for (i = 0; i < keys->Length(); i++)
{
key = keys->Get(i);