From 46bbc34956e590f685c6bc3e1b6f6e46e886bb41 Mon Sep 17 00:00:00 2001 From: Polianin Nikita Date: Tue, 11 Feb 2025 17:13:13 +0300 Subject: [PATCH] refactor: fix error WHITESPACE and FINALNEWLINE --- Endpoint/Controllers/V1/AuthController.cs | 2 +- Endpoint/Controllers/V1/Configuration/ScheduleController.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Endpoint/Controllers/V1/AuthController.cs b/Endpoint/Controllers/V1/AuthController.cs index 2588dd8..3b19c92 100644 --- a/Endpoint/Controllers/V1/AuthController.cs +++ b/Endpoint/Controllers/V1/AuthController.cs @@ -315,4 +315,4 @@ public class AuthController(IOptionsSnapshot user, IOptionsSnapshot logger, IOptionsSnap { try { - using var scope = scopeFactory.CreateScope(); + using var scope = scopeFactory.CreateScope(); var sync = (ScheduleSynchronizer)ActivatorUtilities.GetServiceOrCreateInstance(scope.ServiceProvider, typeof(ScheduleSynchronizer)); - await sync.StartSync(filePaths, CancellationToken.None); + await sync.StartSync(filePaths, CancellationToken.None); } catch (Exception ex) {