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

fix latent issue with password login due to not retreiving password/salt

set semaphore count properly for event execution throttling
This commit is contained in:
RaidMax
2020-04-29 17:05:36 -05:00
parent 8b158e7ad3
commit dc4e5a4d21
2 changed files with 20 additions and 27 deletions

View File

@ -384,7 +384,9 @@ namespace SharedLibraryCore.Services
Masked = _client.Masked,
NetworkId = _client.NetworkId,
TotalConnectionTime = _client.TotalConnectionTime,
AliasLink = _client.AliasLink
AliasLink = _client.AliasLink,
Password = _client.Password,
PasswordSalt = _client.PasswordSalt
})
.FirstOrDefault(c => c.NetworkId == networkId)
);