mirror of
https://codeberg.org/Hyperpipe/Hyperpipe
synced 2025-06-28 13:08:01 +02:00
Hotfixes
This commit is contained in:
parent
8efa6a6439
commit
945630bc60
3 changed files with 19 additions and 7 deletions
|
@ -48,6 +48,13 @@ const shuffleAdd = () => {
|
|||
|
||||
emit('play-urls', copy);
|
||||
},
|
||||
removeSong = i => {
|
||||
console.log(i);
|
||||
|
||||
try {
|
||||
results.items.songs.items.splice(i, 1);
|
||||
} catch {}
|
||||
},
|
||||
saveAlbum = () => {
|
||||
const urls = results.items?.songs?.items?.map(item => ({
|
||||
url: item.url,
|
||||
|
@ -192,6 +199,7 @@ onUpdated(() => {
|
|||
:art="
|
||||
song.thumbnail || song.thumbnails[1]?.url || song.thumbnails[0]?.url
|
||||
"
|
||||
@remove="removeSong"
|
||||
@open-song="
|
||||
$emit('play-urls', [
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue