RCON Player List Fixes

- fixed player list for EPIC players.
This commit is contained in:
Brett Hewitson 2022-05-09 13:34:33 +10:00
parent b19626ecd4
commit 1a45d85ff6
8 changed files with 81 additions and 304 deletions

View file

@ -124,7 +124,8 @@ namespace ServerManagerTool.Lib.ViewModel.RCON
if (playerData == null)
return;
playerData.PlayerName = PlayerData?.PlayerName;
if (PlayerData?.PlayerName != null)
playerData.PlayerName = PlayerData.PlayerName;
playerData.LastPlatformUpdateUtc = PlayerData?.LastPlatformUpdateUtc ?? DateTime.MinValue;
}