diff options
author | Chocobozzz <me@florianbigard.com> | 2023-01-25 08:51:59 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2023-01-25 08:51:59 +0100 |
commit | d5ae943da9325d2a3c122923bbb78f5a24c95101 (patch) | |
tree | f043d055351760d00c7a6726f83151009311fad2 /client | |
parent | 3a380e9a71037b0fcbace58a7599221e7cc76e20 (diff) | |
download | PeerTube-d5ae943da9325d2a3c122923bbb78f5a24c95101.tar.gz PeerTube-d5ae943da9325d2a3c122923bbb78f5a24c95101.tar.zst PeerTube-d5ae943da9325d2a3c122923bbb78f5a24c95101.zip |
Support short UUID for custom markup videos
Diffstat (limited to 'client')
-rw-r--r-- | client/src/app/shared/shared-search/find-in-bulk.service.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/app/shared/shared-search/find-in-bulk.service.ts b/client/src/app/shared/shared-search/find-in-bulk.service.ts index d6ee04379..125d5e2b8 100644 --- a/client/src/app/shared/shared-search/find-in-bulk.service.ts +++ b/client/src/app/shared/shared-search/find-in-bulk.service.ts | |||
@@ -40,7 +40,7 @@ export class FindInBulkService { | |||
40 | 40 | ||
41 | return this.getData({ | 41 | return this.getData({ |
42 | observableObject: this.getVideoInBulk, | 42 | observableObject: this.getVideoInBulk, |
43 | finder: v => v.uuid === uuid, | 43 | finder: v => v.uuid === uuid || v.shortUUID === uuid, |
44 | param: uuid | 44 | param: uuid |
45 | }) | 45 | }) |
46 | } | 46 | } |