From edb38235b3b7bf5ff7a8ff83973a631349afece3 Mon Sep 17 00:00:00 2001 From: Mikal Stordal Date: Sun, 6 Oct 2024 07:15:39 +0200 Subject: [PATCH] fix: revert default vfs location back to the old location for now --- Shokofin/Plugin.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shokofin/Plugin.cs b/Shokofin/Plugin.cs index ff0dbd95..09714c2b 100644 --- a/Shokofin/Plugin.cs +++ b/Shokofin/Plugin.cs @@ -158,7 +158,7 @@ public string VirtualRoot .Distinct() .ToArray(); - private string VirtualRoot_Default => Path.Join(ApplicationPaths.ProgramDataPath, Name); + private string VirtualRoot_Default => Path.Join(ApplicationPaths.ProgramDataPath, "Shokofin", "VFS"); private string VirtualRoot_Cache => Path.Join(ApplicationPaths.CachePath, Name);