Skip to content

Commit

Permalink
Update submodule.
Browse files Browse the repository at this point in the history
  • Loading branch information
bitbound committed Apr 18, 2021
1 parent 9f99c45 commit a75091c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Desktop.Core/Services/WebRtcSession.cs
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,13 @@ public async Task Init(IceServerModel[] iceServers)



public async Task SendDto<T>(T dto) where T : BaseDto
public Task SendDto<T>(T dto) where T : BaseDto
{
CaptureChannel.send(MessagePackSerializer.Serialize(dto));

await TaskHelper.DelayUntilAsync(() => CaptureChannel.bufferedAmount < 64_000, TimeSpan.FromSeconds(5));
TaskHelper.DelayUntil(() => CaptureChannel.bufferedAmount < 64_000, TimeSpan.FromSeconds(5));

return Task.CompletedTask;
}

public Task SetRemoteDescription(string type, string sdp)
Expand Down
1 change: 1 addition & 0 deletions sipsorcery
Submodule sipsorcery added at da34fe

0 comments on commit a75091c

Please sign in to comment.