From 5b4df5faff02f61161e702b9caa1343deab55215 Mon Sep 17 00:00:00 2001 From: fiso64 Date: Mon, 2 Sep 2024 22:06:07 +0200 Subject: [PATCH] commit --- slsk-batchdl/M3uEditor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slsk-batchdl/M3uEditor.cs b/slsk-batchdl/M3uEditor.cs index 976b2ae..54db9e1 100644 --- a/slsk-batchdl/M3uEditor.cs +++ b/slsk-batchdl/M3uEditor.cs @@ -27,7 +27,7 @@ public class M3uEditor public void SetPathAndLoad(string path) { - if (Utils.NormalizedPath(this.path) == Utils.NormalizedPath(path)) + if (this.path != null && Utils.NormalizedPath(this.path) == Utils.NormalizedPath(path)) return; this.path = Path.GetFullPath(path);