Support short UUID for custom markup videos

This commit is contained in:
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

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
})
}