fix build?

This commit is contained in:
Stanley Dimant
2024-11-05 09:33:29 +01:00
parent 152ee81038
commit 6c5ad25d99

View File

@@ -90,7 +90,7 @@ public partial class MareHub
private async Task<string> GetUserIdent(string uid)
{
if (uid.IsNullOrEmpty()) return string.Empty;
if (string.IsNullOrEmpty(uid)) return string.Empty;
return await _redis.GetAsync<string>("UID:" + uid).ConfigureAwait(false);
}