Added redownload option to ignore index file.

This commit is contained in:
2024-09-11 05:16:56 +02:00
parent 24a165cf48
commit cdd5ed36bf
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] };
}