From 52a10d727eb7a910d9b9b7cced4d612ff134cf92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9on=20Avic=20Simmons?= Date: Sun, 6 Sep 2026 04:08:06 -0400 Subject: [PATCH] fix: remove stray $ from 'Can't find directory' error message The interpolated string in FileListenerWorker.ListenOnDirectory has an extra $ before the placeholder, so the message reaches the caller as "Can't find directory $C:\path" instead of "Can't find directory C:\path". The sibling message on line 138 ($"Exception: {ex}") shows the intended form. Message text only - no functional change. --- plugins/simple-io-plugin/FileListenerWorker.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/simple-io-plugin/FileListenerWorker.cs b/plugins/simple-io-plugin/FileListenerWorker.cs index 5f0028a..6b382b8 100644 --- a/plugins/simple-io-plugin/FileListenerWorker.cs +++ b/plugins/simple-io-plugin/FileListenerWorker.cs @@ -100,7 +100,7 @@ Action notifierDelegate _dirPath = path; try { if (!DirctoryExists(path)) { - callback(id, false, $"Can't find directory ${path}"); + callback(id, false, $"Can't find directory {path}"); return; }