From ec267b18c1ce033dd2c33df42390aaa45010ffbe Mon Sep 17 00:00:00 2001 From: Hadi Khazaee Asl Date: Thu, 4 Dec 2025 05:19:24 +0330 Subject: [PATCH] apply try catch wrapping on send push to clients ... --- Providers/XWebinarProvider.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Providers/XWebinarProvider.cs b/Providers/XWebinarProvider.cs index cb9217c..afeb9e5 100644 --- a/Providers/XWebinarProvider.cs +++ b/Providers/XWebinarProvider.cs @@ -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 }