mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-04 16:35:08 -05:00
* fixed possible NPE
This commit is contained in:
parent
916f168d98
commit
6f95136431
@ -143,10 +143,15 @@ public final class WebRequest {
|
|||||||
Logger.getLogger(WebRequest.class.getName()).log(Level.WARNING, e.getMessage());
|
Logger.getLogger(WebRequest.class.getName()).log(Level.WARNING, e.getMessage());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// use http default encoding only for text/html
|
||||||
|
if (contentType.equals("text/html")) {
|
||||||
|
return Charset.forName("ISO-8859-1");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// use http default encoding only for text/html, use UTF-8 for everything else (e.g. XML)
|
// use UTF-8 if we don't know any better
|
||||||
return Charset.forName(contentType.equals("text/html") ? "ISO-8859-1" : "UTF-8");
|
return Charset.forName("UTF-8");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user