Fix old auto blacklist notifications

This commit is contained in:
Chocobozzz
2019-09-05 10:20:03 +02:00
parent 00aab0666c
commit 43d35494b5

View File

@@ -113,6 +113,9 @@ export class UserNotification implements UserNotificationServer {
case UserNotificationType.VIDEO_AUTO_BLACKLIST_FOR_MODERATORS:
this.videoAutoBlacklistUrl = '/admin/moderation/video-auto-blacklist/list'
// Backward compatibility where we did not assign videoBlacklist to this type of notification before
if (!this.videoBlacklist) this.videoBlacklist = { id: null, video: this.video }
this.videoUrl = this.buildVideoUrl(this.videoBlacklist.video)
break