Added Teen Mega World scraper.

This commit is contained in:
DebaucheryLibrarian
2021-09-17 03:30:49 +02:00
parent ae40f33283
commit 522584711b
160 changed files with 517 additions and 5 deletions

View File

@@ -278,8 +278,8 @@ function curateActorEntry(baseActor, batchId) {
return {
name: baseActor.name,
slug: baseActor.slug,
entity_id: collisionLikely ? baseActor.entity.id : null,
entry_id: collisionLikely ? baseActor.entryId : null,
entity_id: (collisionLikely && baseActor.entity?.id) || null,
entry_id: (collisionLikely && baseActor.entryId) || null,
batch_id: batchId,
};
}