]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/shared/users/user-notification.model.ts
Try to improve notification i18n translations
[github/Chocobozzz/PeerTube.git] / 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