Fix actor image update
This commit is contained in:
parent
754c73f32b
commit
bbfdeb3921
|
@ -39,13 +39,13 @@ export class APActorUpdater {
|
||||||
if (this.accountOrChannel instanceof VideoChannelModel) this.accountOrChannel.support = this.actorObject.support
|
if (this.accountOrChannel instanceof VideoChannelModel) this.accountOrChannel.support = this.actorObject.support
|
||||||
|
|
||||||
await runInReadCommittedTransaction(async t => {
|
await runInReadCommittedTransaction(async t => {
|
||||||
await this.actor.save({ transaction: t })
|
await updateActorImageInstance(this.actor, ActorImageType.AVATAR, avatarInfo, t)
|
||||||
await this.accountOrChannel.save({ transaction: t })
|
await updateActorImageInstance(this.actor, ActorImageType.BANNER, bannerInfo, t)
|
||||||
})
|
})
|
||||||
|
|
||||||
await runInReadCommittedTransaction(async t => {
|
await runInReadCommittedTransaction(async t => {
|
||||||
await updateActorImageInstance(this.actor, ActorImageType.AVATAR, avatarInfo, t)
|
await this.actor.save({ transaction: t })
|
||||||
await updateActorImageInstance(this.actor, ActorImageType.BANNER, bannerInfo, t)
|
await this.accountOrChannel.save({ transaction: t })
|
||||||
})
|
})
|
||||||
|
|
||||||
logger.info('Remote account %s updated', this.actorObject.url)
|
logger.info('Remote account %s updated', this.actorObject.url)
|
||||||
|
|
Loading…
Reference in New Issue