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; }