mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-16 17:57:43 +00:00
Bug in if statement
This commit is contained in:
parent
5463397785
commit
c49c071777
@ -242,7 +242,7 @@ final class TikaTextExtractor implements TextExtractor {
|
|||||||
pushbackReader.unread(read);
|
pushbackReader.unread(read);
|
||||||
|
|
||||||
//Save the metadata if it has not been fetched already.
|
//Save the metadata if it has not been fetched already.
|
||||||
if (nonNull(metadataMap)) {
|
if (metadataMap == null) {
|
||||||
metadataMap = new HashMap<>();
|
metadataMap = new HashMap<>();
|
||||||
for (String mtdtKey : metadata.names()) {
|
for (String mtdtKey : metadata.names()) {
|
||||||
metadataMap.put(mtdtKey, metadata.get(mtdtKey));
|
metadataMap.put(mtdtKey, metadata.get(mtdtKey));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user