]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Fix old auto blacklist notifications
authorChocobozzz <me@florianbigard.com>
Thu, 5 Sep 2019 08:20:03 +0000 (10:20 +0200)
committerChocobozzz <me@florianbigard.com>
Thu, 5 Sep 2019 08:20:14 +0000 (10:20 +0200)
client/src/app/shared/users/user-notification.model.ts

index b4ac075c5920cafdc82f816bae83bd0f6eaa279b..c3f4bf429c740bd59095d200becbd87fd1001abc 100644 (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