diff options
Diffstat (limited to 'client/src/app/shared')
3 files changed, 3 insertions, 3 deletions
diff --git a/client/src/app/shared/shared-main/users/user-notification.model.ts b/client/src/app/shared/shared-main/users/user-notification.model.ts index a068daaac..648bb7fe0 100644 --- a/client/src/app/shared/shared-main/users/user-notification.model.ts +++ b/client/src/app/shared/shared-main/users/user-notification.model.ts | |||
@@ -211,7 +211,7 @@ export class UserNotification implements UserNotificationServer { | |||
211 | } | 211 | } |
212 | 212 | ||
213 | private buildVideoImportUrl () { | 213 | private buildVideoImportUrl () { |
214 | return '/my-account/video-imports' | 214 | return '/my-library/video-imports' |
215 | } | 215 | } |
216 | 216 | ||
217 | private buildVideoImportIdentifier (videoImport: { targetUrl?: string, magnetUri?: string, torrentName?: string }) { | 217 | private buildVideoImportIdentifier (videoImport: { targetUrl?: string, magnetUri?: string, torrentName?: string }) { |
diff --git a/client/src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html b/client/src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html index 87ab68b87..aa117dcc6 100644 --- a/client/src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html +++ b/client/src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html | |||
@@ -36,7 +36,7 @@ | |||
36 | </div> | 36 | </div> |
37 | </a> | 37 | </a> |
38 | 38 | ||
39 | <my-edit-button *ngIf="owned && touchScreenEditButton" [routerLink]="[ '/my-account', 'video-playlists', playlist.uuid ]"></my-edit-button> | 39 | <my-edit-button *ngIf="owned && touchScreenEditButton" [routerLink]="[ '/my-library', 'video-playlists', playlist.uuid ]"></my-edit-button> |
40 | 40 | ||
41 | <div *ngIf="owned" class="more" ngbDropdown #moreDropdown="ngbDropdown" placement="left auto" | 41 | <div *ngIf="owned" class="more" ngbDropdown #moreDropdown="ngbDropdown" placement="left auto" |
42 | (openChange)="onDropdownOpenChange()" autoClose="outside" | 42 | (openChange)="onDropdownOpenChange()" autoClose="outside" |
diff --git a/client/src/app/shared/shared-video-playlist/video-playlist-miniature.component.ts b/client/src/app/shared/shared-video-playlist/video-playlist-miniature.component.ts index 4b0669a32..251aa868a 100644 --- a/client/src/app/shared/shared-video-playlist/video-playlist-miniature.component.ts +++ b/client/src/app/shared/shared-video-playlist/video-playlist-miniature.component.ts | |||
@@ -14,7 +14,7 @@ export class VideoPlaylistMiniatureComponent { | |||
14 | @Input() displayPrivacy = false | 14 | @Input() displayPrivacy = false |
15 | 15 | ||
16 | getPlaylistUrl () { | 16 | getPlaylistUrl () { |
17 | if (this.toManage) return [ '/my-account/video-playlists', this.playlist.uuid ] | 17 | if (this.toManage) return [ '/my-library/video-playlists', this.playlist.uuid ] |
18 | if (this.playlist.videosLength === 0) return null | 18 | if (this.playlist.videosLength === 0) return null |
19 | 19 | ||
20 | return [ '/videos/watch/playlist', this.playlist.uuid ] | 20 | return [ '/videos/watch/playlist', this.playlist.uuid ] |