diff options
Diffstat (limited to 'server/models/activitypub')
-rw-r--r-- | server/models/activitypub/actor.ts | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/server/models/activitypub/actor.ts b/server/models/activitypub/actor.ts index 35d7c35e8..2abf40713 100644 --- a/server/models/activitypub/actor.ts +++ b/server/models/activitypub/actor.ts | |||
@@ -260,12 +260,13 @@ export class ActorModel extends Model<ActorModel> { | |||
260 | return ActorModel.scope(ScopeNames.FULL).findAll(query) | 260 | return ActorModel.scope(ScopeNames.FULL).findAll(query) |
261 | } | 261 | } |
262 | 262 | ||
263 | static loadLocalByName (preferredUsername: string) { | 263 | static loadLocalByName (preferredUsername: string, transaction?: Sequelize.Transaction) { |
264 | const query = { | 264 | const query = { |
265 | where: { | 265 | where: { |
266 | preferredUsername, | 266 | preferredUsername, |
267 | serverId: null | 267 | serverId: null |
268 | } | 268 | }, |
269 | transaction | ||
269 | } | 270 | } |
270 | 271 | ||
271 | return ActorModel.scope(ScopeNames.FULL).findOne(query) | 272 | return ActorModel.scope(ScopeNames.FULL).findOne(query) |