XMLTextExtractor throws Exception when encoding is empty string
---------------------------------------------------------------
Key: JCR-1830
URL: https://issues.apache.org/jira/browse/JCR-1830
Project: Jackrabbit
Issue Type: Bug
Components: jackrabbit-text-extractors
Affects Versions: 1.4
Environment: Reproduced in Linux
Reporter: hector rovira
XMLTextExtractor is failing to index xml files. Searching for content in xml
files is not coming back with results.
On the extractText(InputStream stream, String type, String encoding) method,
the encoding is coming in as an empty string, and it throws an exception at
line 62 (reader.parse(source)).
modifying the following statement fixes the problem:
before: if (encoding != null) {
after: if (encoding != null && !encoding.equals("")) {
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.