Fix short uuid use in custom playlist markup

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

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