(crawler) Fix rare exception in content type handling due to improper length checking of a split() array
This commit is contained in:
parent
ca80957143
commit
321fa94b8f
@ -1,6 +1,7 @@
|
||||
package nu.marginalia.contenttype;
|
||||
|
||||
import crawlercommons.mimetypes.MimeTypeDetector;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
import org.jsoup.Jsoup;
|
||||
@ -35,10 +36,12 @@ public class ContentTypeParser {
|
||||
if (contentType == null)
|
||||
return Optional.empty();
|
||||
|
||||
if (!contentType.contains(";"))
|
||||
return Optional.empty();
|
||||
var parts = StringUtils.split(contentType, ';');
|
||||
|
||||
if (parts.length != 2) {
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
var parts = contentType.split(";");
|
||||
var content = parts[0].trim();
|
||||
var extra = parts[1].trim();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user