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

@ -6,7 +6,7 @@
<RuntimeFrameworkVersion>2.1.5</RuntimeFrameworkVersion>
<MvcRazorExcludeRefAssembliesFromPublish>false</MvcRazorExcludeRefAssembliesFromPublish>
<PackageId>RaidMax.IW4MAdmin.Application</PackageId>
<Version>2.2.4.0</Version>
<Version>2.2.4.1</Version>
<Authors>RaidMax</Authors>
<Company>Forever None</Company>
<Product>IW4MAdmin</Product>
@ -31,8 +31,8 @@
<PropertyGroup>
<ServerGarbageCollection>true</ServerGarbageCollection>
<TieredCompilation>true</TieredCompilation>
<AssemblyVersion>2.2.4.0</AssemblyVersion>
<FileVersion>2.2.4.0</FileVersion>
<AssemblyVersion>2.2.4.1</AssemblyVersion>
<FileVersion>2.2.4.1</FileVersion>
</PropertyGroup>
<ItemGroup>

View File

@ -34,7 +34,7 @@ namespace IW4MAdmin.Application.RconParsers
Configuration.Status.GroupMapping.Add(ParserRegex.GroupType.RConPing, 3);
Configuration.Status.GroupMapping.Add(ParserRegex.GroupType.RConNetworkId, 4);
Configuration.Status.GroupMapping.Add(ParserRegex.GroupType.RConName, 5);
Configuration.Status.GroupMapping.Add(ParserRegex.GroupType.RConIpAddress, 6);
Configuration.Status.GroupMapping.Add(ParserRegex.GroupType.RConIpAddress, 7);
}
public IRConParserConfiguration Configuration { get; set; }

View File

@ -482,7 +482,7 @@ namespace SharedLibraryCore
/// <returns></returns>
public static bool PromptBool(string question, string description = null, bool defaultValue = true)
{
Console.Write($"{question}?{(string.IsNullOrEmpty(description) ? "" : $" ({description}) ")}[y/n]: ");
Console.Write($"{question}?{(string.IsNullOrEmpty(description) ? " " : $" ({description}) ")}[y/n]: ");
char response = Console.ReadLine().ToLower().FirstOrDefault();
return response != 0 ? response == 'y' : defaultValue;
}

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);