Fixed: Correctly save the 'create empty author folders' option

Fixes #412
This commit is contained in:
ta264
2020-09-02 21:51:49 +01:00
parent 9100191ad0
commit b93bc1e5e5

View File

@@ -160,9 +160,9 @@ namespace NzbDrone.Core.Configuration
public bool CreateEmptyAuthorFolders
{
get { return GetValueBoolean("CreateEmptyArtistFolders", false); }
get { return GetValueBoolean("CreateEmptyAuthorFolders", false); }
set { SetValue("CreateEmptyArtistFolders", value); }
set { SetValue("CreateEmptyAuthorFolders", value); }
}
public bool DeleteEmptyFolders