From c426dbdd52a0af2fd3fa632e0bdf0b6dd4947dcc Mon Sep 17 00:00:00 2001 From: Olga Nemt Date: Mon, 4 Dec 2023 09:43:19 +0500 Subject: [PATCH] =?UTF-8?q?=D0=A3=D0=B1=D1=80=D0=B0=D0=BD=20ConfigureAwait?= =?UTF-8?q?(false)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AsbCloudWebApi/SignalR/ReportsHub.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AsbCloudWebApi/SignalR/ReportsHub.cs b/AsbCloudWebApi/SignalR/ReportsHub.cs index ac19dc97..5b9aec9b 100644 --- a/AsbCloudWebApi/SignalR/ReportsHub.cs +++ b/AsbCloudWebApi/SignalR/ReportsHub.cs @@ -42,7 +42,7 @@ namespace AsbCloudWebApi.SignalR if ((idCompany is null) || (idUser is null)) return; - if (!await wellService.IsCompanyInvolvedInWellAsync((int)idCompany, idWell, CancellationToken.None).ConfigureAwait(false)) + if (!await wellService.IsCompanyInvolvedInWellAsync((int)idCompany, idWell, CancellationToken.None)) return; await base.AddToGroup(groupName);