forked from DebaucheryLibrarian/traxxx
Catching actor association errors so it does not inhibit media association.
This commit is contained in:
parent
f44cb8bf4c
commit
fae288633c
|
@ -891,6 +891,7 @@ async function getOrCreateActors(baseActors, batchId) {
|
|||
}
|
||||
|
||||
async function associateActors(releases, batchId) {
|
||||
try {
|
||||
const baseActorsByReleaseId = releases.reduce((acc, release) => {
|
||||
if (release.actors) {
|
||||
acc[release.id] = toBaseActors(release.actors, release);
|
||||
|
@ -940,6 +941,11 @@ async function associateActors(releases, batchId) {
|
|||
logger.verbose(`Associated ${releaseActorAssociations.length} actors to ${releases.length} scenes`);
|
||||
|
||||
return actors;
|
||||
} catch (error) {
|
||||
logger.error(`Failed to associate actors: ${error.message}`);
|
||||
|
||||
return [];
|
||||
}
|
||||
}
|
||||
|
||||
async function fetchActor(actorId) {
|
||||
|
|
Loading…
Reference in New Issue