From 12870dbfc9bf9fdae1f6626b71a45e594c2bc75b Mon Sep 17 00:00:00 2001 From: RaidMax Date: Sat, 31 May 2025 10:36:15 -0500 Subject: [PATCH] Fix improper reference to app config for default BaseEventParser --- Application/ApplicationManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Application/ApplicationManager.cs b/Application/ApplicationManager.cs index a87844f7..83cd5a2c 100644 --- a/Application/ApplicationManager.cs +++ b/Application/ApplicationManager.cs @@ -109,7 +109,7 @@ namespace IW4MAdmin.Application ConfigHandler = appConfigHandler; StartTime = DateTime.UtcNow; PageList = new PageList(); - AdditionalEventParsers = new List { new BaseEventParser(parserRegexFactory, logger, _appConfig, serviceProvider.GetRequiredService()) }; + AdditionalEventParsers = new List { new BaseEventParser(parserRegexFactory, logger, appConfig, serviceProvider.GetRequiredService()) }; AdditionalRConParsers = new List { new BaseRConParser(serviceProvider.GetRequiredService>(), parserRegexFactory) }; TokenAuthenticator = new TokenAuthentication(); _logger = logger;