We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00f1b4c commit bd40a90Copy full SHA for bd40a90
src/main/java/ru/mystamps/web/service/SeriesInfoExtractorServiceImpl.java
@@ -198,7 +198,7 @@ protected Boolean extractPerforated(String fragment) {
198
199
log.debug("Determining perforation from a fragment: '{}'", fragment);
200
201
- boolean withoutPerforation = StringUtils.contains(fragment, "б/з")
+ boolean withoutPerforation = StringUtils.containsIgnoreCase(fragment, "б/з")
202
|| StringUtils.containsIgnoreCase(fragment, "беззубцовые");
203
if (withoutPerforation) {
204
log.debug("Perforation is false");
0 commit comments