This commit is contained in:
Chocobozzz 2024-12-11 15:05:29 +01:00
parent 6b60a1d852
commit ec9ff5e8c0
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 1 additions and 1 deletions

View File

@ -661,7 +661,7 @@ async function checkVideoAutoBlacklistForModerators (options: CheckerBaseParams
function emailNotificationFinder (email: object) { function emailNotificationFinder (email: object) {
const text = email['text'] const text = email['text']
return text.indexOf(shortUUID) !== -1 && email['text'].indexOf('video-auto-blacklist/list') !== -1 return text.indexOf(shortUUID) !== -1 && email['text'].indexOf('moderation/video-blocklist') !== -1
} }
await checkNotification({ ...options, notificationChecker, emailNotificationFinder }) await checkNotification({ ...options, notificationChecker, emailNotificationFinder })