From 32b47f1bc2cb594329e8d42c9d385ec2f00e38eb Mon Sep 17 00:00:00 2001 From: Jah-yee <166608075+Jah-yee@users.noreply.github.com> Date: Sun, 26 Jul 2026 18:30:23 +0800 Subject: [PATCH] fix: correct 'occured' to 'occurred' typo in RCLONE.cs error message --- RCLONE.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RCLONE.cs b/RCLONE.cs index 9e6f5953..0ae2539a 100644 --- a/RCLONE.cs +++ b/RCLONE.cs @@ -35,7 +35,7 @@ public static void killRclone() } catch (Exception ex) { - _ = Logger.Log($"Exception occured while attempting to shut down RCLONE with exception message: {ex.Message}", LogLevel.ERROR); + _ = Logger.Log($"Exception occurred while attempting to shut down RCLONE with exception message: {ex.Message}", LogLevel.ERROR); } } }