Fix short uuid use in custom playlist markup

pull/6449/head
Chocobozzz 2024-06-19 14:50:01 +02:00
parent c1fe77b993
commit 42c78c7fcc
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 1 additions and 1 deletions

View File

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