This commit is contained in:
Chocobozzz 2024-06-26 14:20:06 +02:00
parent 9772280e99
commit 9b2a054e54
No known key found for this signature in database
GPG Key ID: 583A612D890159BE

View File

@ -251,7 +251,7 @@ export class Video implements VideoServerModel {
}
hasSeeAllVideosRight (user: AuthUser) {
return user && user.hasRight(UserRight.SEE_ALL_VIDEOS)
return user?.hasRight(UserRight.SEE_ALL_VIDEOS)
}
isOwnerOrHasSeeAllVideosRight (user: AuthUser) {
@ -278,8 +278,7 @@ export class Video implements VideoServerModel {
}
canRunForcedTranscoding (user: AuthUser) {
return this.isLocal &&
user && user.hasRight(UserRight.RUN_VIDEO_TRANSCODING)
return this.isLocal && user?.hasRight(UserRight.RUN_VIDEO_TRANSCODING)
}
hasHLS () {