mirror of https://github.com/micromata/borgbackup-butler.git

...
Kai Reinhard
09.37.2018 52e7a16721b90575c2425db04484ef2a258cc03c
borgbutler-core/src/main/java/de/micromata/borgbutler/cache/ArchiveFileListCache.java
@@ -32,7 +32,12 @@
            this.content = BorgCommands.list(repoConfig, archive);
            save();
        }
        return content;
        List<FilesystemItem> result = this.content;
        if (content != null && content.size() > 100000) {
            // Don't waste the memory space...
            this.content = null;
        }
        return result;
    }
    protected void update(AbstractCache readCache) {