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
+4
View File
@@ -1189,8 +1189,12 @@ namespace xWebinarService.Providers
{ {
clients = Hub.Clients.AllExcept(connectionId); clients = Hub.Clients.AllExcept(connectionId);
} }
try
{
await clients.SendAsync(action, payLoad, connectionId); await clients.SendAsync(action, payLoad, connectionId);
} }
catch { }
}
#endregion #endregion
} }
} }