Skip to content

Commit

Permalink
fix(server): fix call AsyncEntity.SetStreamSyncedMetaData
Browse files Browse the repository at this point in the history
  • Loading branch information
Doxoh committed Dec 22, 2023
1 parent 41fd591 commit 7f0891f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/AltV.Net.Async/Elements/Entities/AsyncEntity.cs
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ public void SetStreamSyncedMetaData(string key, in MValueConst value)
lock (Entity)
{
if (!AsyncContext.CheckIfExistsNullable(Entity)) return;
Entity.SetSyncedMetaData(key, in value);
Entity.SetStreamSyncedMetaData(key, in value);
}
}

Expand Down

0 comments on commit 7f0891f

Please sign in to comment.