Fixed issue with null cells after Fetch URL
Some websites do not set the charset= properly and use enclosing quotes. Tested and Verified.
This commit is contained in:
parent
536493c5d3
commit
cdda1edcf0
@ -291,7 +291,7 @@ public class ColumnAdditionByFetchingURLsOperation extends EngineDependentOperat
|
|||||||
urlData.row,
|
urlData.row,
|
||||||
new Cell(
|
new Cell(
|
||||||
ParsingUtilities.inputStreamToString(
|
ParsingUtilities.inputStreamToString(
|
||||||
is, encoding != null ? encoding : "UTF-8"),
|
is, (encoding == null) || ( encoding.equalsIgnoreCase("\"UTF-8\"")) ? "UTF-8" : encoding),
|
||||||
null));
|
null));
|
||||||
|
|
||||||
} finally {
|
} finally {
|
||||||
|
Loading…
Reference in New Issue
Block a user