Fix auto save condition

This commit is contained in:
Ben Olden-Cooligan 2019-07-14 17:08:46 -04:00
parent ae876ed248
commit 34a90b80d9

View File

@ -64,7 +64,7 @@ namespace NAPS2.Scan
var source = controller.Scan(options, op.CancelToken);
if (scanProfile.AutoSaveSettings != null)
if (scanProfile.EnableAutoSave && scanProfile.AutoSaveSettings != null)
{
source = autoSaver.Save(scanProfile.AutoSaveSettings, source);
}