1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 07:13:58 -05:00

fix T7 extra null bytes in status response

fix regression bug with info response on T6
This commit is contained in:
RaidMax
2020-04-18 10:46:55 -05:00
parent c7005c7ac0
commit 842fdc63a7
2 changed files with 6 additions and 4 deletions

View File

@ -219,7 +219,7 @@ namespace IW4MAdmin.Application.RCon
else
{
splitStatusStrings.Add(responseString.Replace(config.CommandPrefixes.RConResponse, ""));
splitStatusStrings.Add(responseString.Replace(config.CommandPrefixes.RConResponse, "").TrimEnd('\0'));
}
}