1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-23 22:25:14 -04:00

Fixed: Forms login persists across restarts in docker

[common]
This commit is contained in:
ta264
2021-11-01 21:28:20 +00:00
parent 84dd10f032
commit a219b4a1b8
3 changed files with 15 additions and 0 deletions
@@ -287,6 +287,11 @@ namespace NzbDrone.Common.Extensions
return appFolderInfo.AppDataFolder;
}
public static string GetDataProtectionPath(this IAppFolderInfo appFolderInfo)
{
return Path.Combine(GetAppDataPath(appFolderInfo), "asp");
}
public static string GetLogFolder(this IAppFolderInfo appFolderInfo)
{
return Path.Combine(GetAppDataPath(appFolderInfo), "logs");