fix for wrong id

This commit is contained in:
Ari Lazier 2015-10-07 20:05:52 -06:00
parent 6d850cba5e
commit 088fb8bf66
1 changed files with 2 additions and 2 deletions

View File

@ -88,8 +88,8 @@ static RPCObjectID s_id_counter = 0;
s_requests["/get_property"] = [=](NSDictionary *dict) {
JSValueRef exception = NULL;
JSStringRef propString = RJSStringForString([dict[@"name"] UTF8String]);
RPCObjectID realmId = [dict[@"realmId"] longValue];
JSValueRef propertyValue = ObjectGetProperty(s_context, s_objects[realmId], propString, &exception);
RPCObjectID objectId = [dict[@"objectId"] longValue];
JSValueRef propertyValue = ObjectGetProperty(s_context, s_objects[objectId], propString, &exception);
JSStringRelease(propString);
if (exception) {