Added actor flush.

This commit is contained in:
DebaucheryLibrarian
2020-12-30 03:19:09 +01:00
parent af67d733ad
commit 8aabcd6443
4 changed files with 68 additions and 26 deletions

View File

@@ -168,6 +168,12 @@ function filterInternalDuplicateReleases(releases) {
return acc;
}
if (!release.entryId) {
logger.warn(`No entry ID supplied for "${release.title}" from '${release.entity.name}'`);
return acc;
}
if (!acc[release.entity.id]) {
acc[release.entity.id] = {};
}