Fixed issues with custom output path and batch processing

This commit is contained in:
n00mkrad
2021-12-06 12:48:49 +01:00
parent c57fbb92ee
commit 659332dd0f
4 changed files with 26 additions and 5 deletions

View File

@@ -114,7 +114,7 @@ namespace Flowframes.Main
return false;
}
if (entry.outPath == null || !Directory.Exists(entry.outPath))
if (entry.outPath == null || (!Directory.Exists(entry.outPath) && Config.GetInt("outFolderLoc") != 1))
{
Logger.Log("Queue: Can't process queue entry: Output path is invalid.");
return false;