Ver código fonte

Fix changing ProgramDataPath when passed as and arg

Bond-009 6 anos atrás
pai
commit
494c2e312d
1 arquivos alterados com 1 adições e 2 exclusões
  1. 1 2
      MediaBrowser.Server.Mono/Program.cs

+ 1 - 2
MediaBrowser.Server.Mono/Program.cs

@@ -101,10 +101,9 @@ namespace MediaBrowser.Server.Mono
                         programDataPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile), ".local", "share");
                         programDataPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile), ".local", "share");
                     }
                     }
                 }
                 }
+                programDataPath = Path.Combine(programDataPath, "jellyfin");
             }
             }
 
 
-            programDataPath = Path.Combine(programDataPath, "jellyfin");
-
             var appFolderPath = Path.GetDirectoryName(applicationPath);
             var appFolderPath = Path.GetDirectoryName(applicationPath);
 
 
             return new ServerApplicationPaths(programDataPath, appFolderPath, appFolderPath);
             return new ServerApplicationPaths(programDataPath, appFolderPath, appFolderPath);