From: Chocobozzz Date: Wed, 20 Feb 2019 14:46:33 +0000 (+0100) Subject: Correctly fix video import notification X-Git-Tag: v1.3.0-rc.1~170 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=6d28a5056efc68da51c7ef00d563f3557a72bc49;p=github%2FChocobozzz%2FPeerTube.git Correctly fix video import notification If the imported video is deleted --- diff --git a/client/src/app/shared/users/user-notification.model.ts b/client/src/app/shared/users/user-notification.model.ts index 5d0dc19ae..097830752 100644 --- a/client/src/app/shared/users/user-notification.model.ts +++ b/client/src/app/shared/users/user-notification.model.ts @@ -118,7 +118,8 @@ export class UserNotification implements UserNotificationServer { case UserNotificationType.MY_VIDEO_IMPORT_SUCCESS: this.videoImportUrl = this.buildVideoImportUrl() this.videoImportIdentifier = this.buildVideoImportIdentifier(this.videoImport) - this.videoUrl = this.buildVideoUrl(this.videoImport.video) + + if (this.videoImport.video) this.videoUrl = this.buildVideoUrl(this.videoImport.video) break case UserNotificationType.MY_VIDEO_IMPORT_ERROR: diff --git a/client/src/app/shared/users/user-notifications.component.html b/client/src/app/shared/users/user-notifications.component.html index 0d69e0feb..1c0af1bb0 100644 --- a/client/src/app/shared/users/user-notifications.component.html +++ b/client/src/app/shared/users/user-notifications.component.html @@ -56,7 +56,7 @@
- Your video import {{ notification.videoImportIdentifier }} succeeded + Your video import {{ notification.videoImportIdentifier }} succeeded