apply try catch wrapping on send push to clients ...

This commit is contained in:
2025-12-04 05:19:24 +03:30
parent c1cc975fcb
commit ec267b18c1
+5 -1
View File
@@ -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
}