Skip to content

Commit

Permalink
Merge pull request #825 from magicdawn/fix-file-pattern-regex
Browse files Browse the repository at this point in the history
Fix: allow dot(.) and dash(-) in file pattern
  • Loading branch information
nilaoda committed May 12, 2024
2 parents ea08021 + 1f8e8e5 commit baecdc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BBDown/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -842,7 +842,7 @@ private static string FormatSavePath(string savePathFormat, string title, Video?
return result;
}

[GeneratedRegex("<([\\w:]+?)>")]
[GeneratedRegex("<([\\w:\\-.]+?)>")]
private static partial Regex InfoRegex();
}
}

0 comments on commit baecdc2

Please sign in to comment.