Skip to content

Commit

Permalink
ALTV-469 Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
OlegT committed Jan 10, 2025
1 parent f569d06 commit 6086054
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion server/src/bindings/ConnectionInfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ static void HwId3Getter(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8
{
V8_GET_ISOLATE_CONTEXT_RESOURCE();
V8_GET_THIS_BASE_OBJECT(con, alt::IConnectionInfo);
V8_RETURN_STRING(con->GetHwId3());
V8_RETURN_STRING(con->GetHwid3());
}

static void AuthTokenGetter(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info)
Expand Down
2 changes: 1 addition & 1 deletion server/src/bindings/Player.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ static void HwId3Getter(v8::Local<v8::String> name, const v8::PropertyCallbackIn
{
V8_GET_ISOLATE();
V8_GET_THIS_BASE_OBJECT(_this, IPlayer);
V8_RETURN_STRING(_this->GetHwId3());
V8_RETURN_STRING(_this->GetHwid3());
}

static void SetClothes(const v8::FunctionCallbackInfo<v8::Value>& info)
Expand Down

0 comments on commit 6086054

Please sign in to comment.