Merge pull request #159 from Bond-009/patch-1

Fix changing ProgramDataPath when passed as and arg
pull/1154/head
Joshua M. Boniface 6 years ago committed by GitHub
commit 28a2774883

@ -101,10 +101,9 @@ namespace MediaBrowser.Server.Mono
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);
return new ServerApplicationPaths(programDataPath, appFolderPath, appFolderPath);

Loading…
Cancel
Save