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

Fixes #412
pull/434/head
ta264 4 years ago
parent 9100191ad0
commit b93bc1e5e5

@ -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

Loading…
Cancel
Save