allow muting from the miniature options

initial implementation with a listing refresh except on search results
This commit is contained in:
Rigel Kent
2020-06-28 16:38:51 +02:00
parent 4c9e9d2ee9
commit d473fd94ce
8 changed files with 82 additions and 38 deletions

View File

@@ -444,11 +444,11 @@ export class VideoCommentModel extends Model<VideoCommentModel> {
}
const accountWhere = accountId
? {
[Op.and]: {
...accountExclusion,
[Op.eq]: accountId
}
[Op.and]: {
...accountExclusion,
[Op.eq]: accountId
}
}
: accountExclusion
const videoChannelWhere = videoChannelId ? { id: videoChannelId } : undefined