Skip to content

Commit

Permalink
OKEGui/OKEGui/Task/ChapterService.cs: relax BD/Stream directory check
Browse files Browse the repository at this point in the history
Signed-off-by: akarin <[email protected]>
  • Loading branch information
AkarinVS committed Sep 5, 2023
1 parent 53c0cfb commit 76909cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OKEGui/OKEGui/Task/ChapterService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ private static bool HasBlurayStructure(TaskDetail task)
return false;
}

if (inputFile.Directory.Name != "STREAM")
if (inputFile.Directory.Name.ToUpper() != "STREAM")
{
Logger.Warn($"{task.InputFile}不在BDMV文件夹结构内。");
return false;
Expand Down

0 comments on commit 76909cf

Please sign in to comment.