Skip to content

Commit fe6a78e

Browse files
committed
fix: reset last parsed file hash when archiving feeds
1 parent b55245d commit fe6a78e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/services/archiver.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,10 +96,10 @@ export class ArchiverService {
9696
.includes(item.item_flag_status.id)
9797
);
9898
await this.processItems(activeOrPendingItems, archivedStatus);
99-
10099
}
101100

102101
feed.feed_flag_status = { ...feed.feed_flag_status, id: FeedFlagStatusStatusEnum.Archived };
102+
feed.last_parsed_file_hash = null;
103103
await this.feedRepositoryReadWrite.save(feed);
104104
}
105105
}

0 commit comments

Comments
 (0)