Added redownload option to ignore index file.

This commit is contained in:
2018-07-01 00:22:17 +02:00
parent 84f7757712
commit 240146e554
2 changed files with 5 additions and 1 deletions

View File

@@ -58,7 +58,7 @@ function curatePost(acc, post, user, index, indexed, processed, args) {
};
if (indexed.entries.length) {
if (indexed.entries.find(entry => entry.id === post.id)) {
if (!args.redownload && indexed.entries.find(entry => entry.id === post.id)) {
return { ...acc, indexedUpdated: [...acc.indexedUpdated, curatedPost] };
}