Skip to content

Commit 6086054

Browse files
author
OlegT
committed
ALTV-469 Fix build
1 parent f569d06 commit 6086054

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

server/src/bindings/ConnectionInfo.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ static void HwId3Getter(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8
3737
{
3838
V8_GET_ISOLATE_CONTEXT_RESOURCE();
3939
V8_GET_THIS_BASE_OBJECT(con, alt::IConnectionInfo);
40-
V8_RETURN_STRING(con->GetHwId3());
40+
V8_RETURN_STRING(con->GetHwid3());
4141
}
4242

4343
static void AuthTokenGetter(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info)

server/src/bindings/Player.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ static void HwId3Getter(v8::Local<v8::String> name, const v8::PropertyCallbackIn
222222
{
223223
V8_GET_ISOLATE();
224224
V8_GET_THIS_BASE_OBJECT(_this, IPlayer);
225-
V8_RETURN_STRING(_this->GetHwId3());
225+
V8_RETURN_STRING(_this->GetHwid3());
226226
}
227227

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

0 commit comments

Comments
 (0)