Fixed: Forms login persists across restarts in docker

Closes #1307

(cherry picked from commit a219b4a1b869863b2ef47d4bdf33d308cb261ba3)
This commit is contained in:
ta264
2021-11-09 21:35:20 +00:00
parent 1835f15460
commit a3a914adfe
3 changed files with 15 additions and 1 deletions
@@ -259,6 +259,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");