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

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