From 7fcd72e8d3f8b795d06cd07d1f3ab51dd5ef6d89 Mon Sep 17 00:00:00 2001 From: Valens <8889280+VforValens@users.noreply.github.com> Date: Sat, 25 Jan 2025 15:16:16 -0500 Subject: [PATCH] Update NotifierController.cs Remove unused parameters and clean up the controller so it doesn't break the build KEK. --- Libraries/Core/Controllers/NotifierController.cs | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/Libraries/Core/Controllers/NotifierController.cs b/Libraries/Core/Controllers/NotifierController.cs index 656fbd8e..52c55f7f 100644 --- a/Libraries/Core/Controllers/NotifierController.cs +++ b/Libraries/Core/Controllers/NotifierController.cs @@ -10,10 +10,7 @@ namespace Core.Controllers; [Injectable] public class NotifierController( HttpServerHelper _httpServerHelper, - NotifierHelper _notifierHelper, - NotificationService _notificationService, - _timeout, - _pollInterval + NotifierHelper _notifierHelper ) { /// @@ -62,11 +59,11 @@ public class NotifierController( // _notificationService.UpdateMessageOnQueue(sessionID, []); // resolve(messages); - }; + //}; // immediately check - checkNotifications(); - }); + // checkNotifications(); + //}); } ///