mirror of https://github.com/Chocobozzz/PeerTube
parent
8a9e6ee4a8
commit
b1771455af
|
@ -482,15 +482,16 @@ class Notifier {
|
|||
return { users: moderators, settingGetter, notificationCreator, emailSender: emailSenderModerators }
|
||||
}
|
||||
|
||||
const [ reporterOptions, moderatorsOptions ] = await Promise.all([
|
||||
const options = await Promise.all([
|
||||
buildReporterOptions(),
|
||||
buildModeratorsOptions()
|
||||
])
|
||||
|
||||
return Promise.all([
|
||||
this.notify(reporterOptions),
|
||||
this.notify(moderatorsOptions)
|
||||
])
|
||||
return Promise.all(
|
||||
options
|
||||
.filter(opt => opt)
|
||||
.map(this.notify)
|
||||
)
|
||||
}
|
||||
|
||||
private async notifyModeratorsOfVideoAutoBlacklist (videoBlacklist: MVideoBlacklistLightVideo) {
|
||||
|
|
Loading…
Reference in New Issue