Fix IP parsing bug introduced with IW4Parser

Additional fix for Webfront Index OoB on _ClientActivity
This commit is contained in:
RaidMax
2019-01-28 18:21:56 -06:00
parent 760d3026ce
commit f1dd4f7c7f
4 changed files with 6 additions and 6 deletions

View File

@ -28,7 +28,7 @@ namespace WebfrontCore.ViewComponents
Level = p.Level.ToLocalizedLevelName(),
LevelInt = (int)p.Level
}).ToList(),
ChatHistory = s.ChatHistory,
ChatHistory = s.ChatHistory.ToList(),
Online = !s.Throttled
}).ToList();
return View("_List", serverInfo);