Skip to content

Commit

Permalink
put back default sqlite parser call for skype
Browse files Browse the repository at this point in the history
  • Loading branch information
lfcnassif committed Mar 18, 2020
1 parent 85f5b03 commit 217e0d6
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,9 @@ public void parse(InputStream stream, ContentHandler handler, Metadata metadata,
final TikaInputStream tis = TikaInputStream.get(stream, tmp);
try {
File tmpFile = tis.getFile();

//call here instead of catch clause because calls, videos and other info are not parsed currently
sqliteParser.parse(tis, handler, metadata, context);

if (extractor.shouldParseEmbedded(metadata)) {

Expand Down Expand Up @@ -225,7 +228,6 @@ public Connection getConnection() throws SkypeParserException {
}

} catch (Exception e) {
sqliteParser.parse(tis, handler, metadata, context);
throw new TikaException("SkypeParserException Exception", e); //$NON-NLS-1$

} finally {
Expand Down

0 comments on commit 217e0d6

Please sign in to comment.