Fixes case of a songs/signs check
All checks were successful
KnarCraft/FFmpegConvert/pipeline/head This commit looks good

This commit is contained in:
Kristian Knarvik 2022-09-30 21:48:20 +02:00
parent 750498810c
commit 388563574f

View File

@ -90,6 +90,6 @@ public class SubtitleStream extends AbstractStream implements StreamObject {
return !titleLowercase.matches(".*signs?[ &/a-z]+songs?.*") &&
!titleLowercase.matches(".*songs?[ &/a-z]+signs?.*") &&
!titleLowercase.matches(".*forced.*") &&
!titleLowercase.matches(".*S&S.*");
!titleLowercase.matches(".*s&s.*");
}
}