Don't save other attributes when set as refreshed

This commit is contained in:
Chocobozzz 2021-04-12 13:44:58 +02:00
parent b044cb188d
commit c24822a8fd
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
2 changed files with 15 additions and 4 deletions

View File

@ -7,7 +7,15 @@ import { VideoModel } from '../../../models/video/video'
import { VideoCommentModel } from '../../../models/video/video-comment'
import { VideoPlaylistModel } from '../../../models/video/video-playlist'
import { APProcessorOptions } from '../../../types/activitypub-processor.model'
import { MAccountActor, MActor, MActorSignature, MChannelActor, MCommentOwnerVideo } from '../../../types/models'
import {
MAccountActor,
MActor,
MActorFull,
MActorSignature,
MChannelAccountActor,
MChannelActor,
MCommentOwnerVideo
} from '../../../types/models'
import { markCommentAsDeleted } from '../../video-comment'
import { forwardVideoRelatedActivity } from '../send/utils'
@ -30,7 +38,8 @@ async function processDeleteActivity (options: APProcessorOptions<ActivityDelete
} else if (byActorFull.type === 'Group') {
if (!byActorFull.VideoChannel) throw new Error('Actor ' + byActorFull.url + ' is a group but we cannot find it in database.')
const channelToDelete = Object.assign({}, byActorFull.VideoChannel, { Actor: byActorFull })
const channelToDelete = byActorFull.VideoChannel as MChannelAccountActor & { Actor: MActorFull }
channelToDelete.Actor = byActorFull
return retryTransactionWrapper(processDeleteVideoChannel, channelToDelete)
}
}

View File

@ -2027,9 +2027,11 @@ export class VideoModel extends Model {
}
setAsRefreshed () {
this.changed('updatedAt', true)
const options = {
where: { id: this.id }
}
return this.save()
return VideoModel.update({ updatedAt: new Date() }, options)
}
requiresAuth () {