Skip to content

Commit 5136399

Browse files
committed
fix SocialId name in connectionInfo
1 parent 5065c26 commit 5136399

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

api/AltV.Net.Async/Elements/Entities/AsyncConnectionInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ public string Name
2929
}
3030
}
3131
}
32-
public ulong SocialClubId
32+
public ulong SocialId
3333
{
3434
get
3535
{
3636
lock (ConnectionInfo)
3737
{
3838
if (!AsyncContext.CheckIfExistsOrCachedNullable(ConnectionInfo)) return default;
39-
return ConnectionInfo.SocialClubId;
39+
return ConnectionInfo.SocialId;
4040
}
4141
}
4242
}

api/AltV.Net.Mock/MockConnectionInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public MockConnectionInfo(ICore core, IntPtr nativePointer, uint id) : base(core
1515

1616
public IntPtr ConnectionInfoNativePointer { get; }
1717
public string Name { get; }
18-
public ulong SocialClubId { get; }
18+
public ulong SocialId { get; }
1919
public ulong HardwareIdHash { get; }
2020
public ulong HardwareIdExHash { get; }
2121
public string AuthToken { get; }

api/AltV.Net/Elements/Entities/ConnectionInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public string Name
4848
}
4949
}
5050

51-
public ulong SocialClubId
51+
public ulong SocialId
5252
{
5353
get
5454
{

api/AltV.Net/Elements/Entities/IConnectionInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ public interface IConnectionInfo : IBaseObject
88
{
99
IntPtr ConnectionInfoNativePointer { get; }
1010
string Name { get; }
11-
ulong SocialClubId { get; }
11+
ulong SocialId { get; }
1212
ulong HardwareIdHash { get; }
1313
ulong HardwareIdExHash { get; }
1414
string AuthToken { get; }

0 commit comments

Comments
 (0)