From 7fb18043660ce15a58965e17422c710c9bda729f Mon Sep 17 00:00:00 2001 From: Mikhail Trubnikov Date: Tue, 5 Dec 2023 11:49:00 +1000 Subject: [PATCH] =?UTF-8?q?fix(api):=20=D0=B7=D0=B0=D0=BF=D0=BE=D0=BB?= =?UTF-8?q?=D0=BD=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=B4=D0=B0=D0=BD=D0=BD=D1=8B?= =?UTF-8?q?=D1=85=20=D0=BE=20=D0=BF=D0=BE=D0=BB=D1=8C=D0=B7=D0=BE=D0=B2?= =?UTF-8?q?=D0=B0=D1=82=D0=B5=D0=BB=D0=B5=20=D0=B2=20=D0=BA=D1=8D=D1=88?= =?UTF-8?q?=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PARR.API/Services/Implementations/AuthService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PARR.API/Services/Implementations/AuthService.cs b/PARR.API/Services/Implementations/AuthService.cs index 462b0e8a..901e62be 100644 --- a/PARR.API/Services/Implementations/AuthService.cs +++ b/PARR.API/Services/Implementations/AuthService.cs @@ -74,7 +74,7 @@ namespace PARR.API.Services.Implementations if (user != null) { - cacheData.Name = user.Name + host != null ? $", {host!.Ek}" : string.Empty; + cacheData.Name = user.Name + (host != null ? $", {host.Ek}" : string.Empty); cacheData.Description = user.Description ?? string.Empty; }