Skip to content

Commit

Permalink
Remove server tps, dunno what i had in mind when adding it
Browse files Browse the repository at this point in the history
  • Loading branch information
LucHeart committed Aug 12, 2024
1 parent edab84c commit 1357cac
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion Common/Models/WebSocket/LCG/TpsData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@
public sealed class TpsData
{
public required byte Client { get; set; }
public required byte Server { get; set; }
}
3 changes: 1 addition & 2 deletions LiveControlGateway/Controllers/LiveControlController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -213,8 +213,7 @@ await QueueMessage(new Common.Models.WebSocket.BaseResponse<LiveResponseType>
ResponseType = LiveResponseType.TPS,
Data = new TpsData
{
Client = _tps,
Server = 10
Client = _tps
}
});
await UpdateConnectedState(DeviceLifetimeManager.IsConnected(Id), true);
Expand Down

0 comments on commit 1357cac

Please sign in to comment.