Skip to content

Commit

Permalink
fix(client): id getter
Browse files Browse the repository at this point in the history
  • Loading branch information
xxshady authored Nov 16, 2024
1 parent 2313f40 commit 58a2022
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/bindings/Interior.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ static void GetPortalByIndex(const v8::FunctionCallbackInfo<v8::Value>& info)
V8_RETURN(v8InteriorPortal.New(isolate->GetEnteredOrMicrotaskContext(), args));
}

static void IdGetter(const v8::FunctionCallbackInfo<v8::Value>& info)
static void IdGetter(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info)
{
V8_GET_ISOLATE_CONTEXT();
V8_GET_THIS_INTERNAL_FIELD_UINT32(1, interiorId);
Expand Down

0 comments on commit 58a2022

Please sign in to comment.