Skip to content

Commit

Permalink
Await call.
Browse files Browse the repository at this point in the history
  • Loading branch information
bitbound committed Nov 12, 2020
1 parent 9b53eb5 commit e1d0499
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Server/Hubs/ViewerHub.cs
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ public async Task SendScreenCastRequestToDevice(string screenCasterID, string re
else
{
SessionInfo.Mode = RemoteControlMode.Normal;
_ = Clients.Caller.SendAsync("RequestingScreenCast");
await Clients.Caller.SendAsync("RequestingScreenCast");
await CasterHubContext.Clients.Client(screenCasterID).SendAsync("RequestScreenCast", Context.ConnectionId, RequesterName, AppConfig.RemoteControlNotifyUser);
}
}
Expand Down

0 comments on commit e1d0499

Please sign in to comment.