1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 15:20:48 -05:00

fix issue with set password

This commit is contained in:
RaidMax
2022-08-20 10:42:34 -05:00
parent b4a2761590
commit 39946ba59f

View File

@ -286,7 +286,10 @@ namespace SharedLibraryCore.Services
entity.PasswordSalt = temporalClient.PasswordSalt;
}
entity.GameName = temporalClient.GameName;
if (entity.GameName == Reference.Game.UKN)
{
entity.GameName = temporalClient.GameName;
}
// update in database
await context.SaveChangesAsync();