diff options
Diffstat (limited to 'server/models/actor')
-rw-r--r-- | server/models/actor/actor.ts | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/server/models/actor/actor.ts b/server/models/actor/actor.ts index 0cd30f545..8df49951d 100644 --- a/server/models/actor/actor.ts +++ b/server/models/actor/actor.ts | |||
@@ -496,7 +496,7 @@ export class ActorModel extends Model<Partial<AttributesOnly<ActorModel>>> { | |||
496 | }, { where, transaction }) | 496 | }, { where, transaction }) |
497 | } | 497 | } |
498 | 498 | ||
499 | static loadAccountActorByVideoId (videoId: number): Promise<MActor> { | 499 | static loadAccountActorByVideoId (videoId: number, transaction: Transaction): Promise<MActor> { |
500 | const query = { | 500 | const query = { |
501 | include: [ | 501 | include: [ |
502 | { | 502 | { |
@@ -520,7 +520,8 @@ export class ActorModel extends Model<Partial<AttributesOnly<ActorModel>>> { | |||
520 | } | 520 | } |
521 | ] | 521 | ] |
522 | } | 522 | } |
523 | ] | 523 | ], |
524 | transaction | ||
524 | } | 525 | } |
525 | 526 | ||
526 | return ActorModel.unscoped().findOne(query) | 527 | return ActorModel.unscoped().findOne(query) |