apply try catch wrapping on send push to clients ...
This commit is contained in:
@@ -1189,7 +1189,11 @@ namespace xWebinarService.Providers
|
||||
{
|
||||
clients = Hub.Clients.AllExcept(connectionId);
|
||||
}
|
||||
await clients.SendAsync(action, payLoad, connectionId);
|
||||
try
|
||||
{
|
||||
await clients.SendAsync(action, payLoad, connectionId);
|
||||
}
|
||||
catch { }
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user