Support short UUID for custom markup videos

pull/5555/head
Chocobozzz 2023-01-25 08:51:59 +01:00
parent 3a380e9a71
commit d5ae943da9
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ export class FindInBulkService {
return this.getData({
observableObject: this.getVideoInBulk,
finder: v => v.uuid === uuid,
finder: v => v.uuid === uuid || v.shortUUID === uuid,
param: uuid
})
}