diff options
Diffstat (limited to 'client/src/app/shared/video')
-rw-r--r-- | client/src/app/shared/video/video-details.model.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/app/shared/video/video-details.model.ts b/client/src/app/shared/video/video-details.model.ts index 4e4f64c7b..a22ed68da 100644 --- a/client/src/app/shared/video/video-details.model.ts +++ b/client/src/app/shared/video/video-details.model.ts | |||
@@ -88,6 +88,6 @@ export class VideoDetails extends Video implements VideoDetailsServerModel { | |||
88 | } | 88 | } |
89 | 89 | ||
90 | isUpdatableBy (user: AuthUser) { | 90 | isUpdatableBy (user: AuthUser) { |
91 | return user && this.isLocal === true && user.username === this.accountName | 91 | return user && this.isLocal === true && (this.accountName === user.username || user.hasRight(UserRight.UPDATE_ANY_VIDEO)) |
92 | } | 92 | } |
93 | } | 93 | } |