Browse Source

Support short UUID for custom markup videos

Chocobozzz 1 year ago
parent
commit
d5ae943da9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      client/src/app/shared/shared-search/find-in-bulk.service.ts

+ 1 - 1
client/src/app/shared/shared-search/find-in-bulk.service.ts

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