server: add get album bio from last fm function

- co-written by Github Copilot
This commit is contained in:
geoffrey45
2022-01-17 12:32:27 +03:00
parent a720891c20
commit 2ee8d27bf0
20 changed files with 370 additions and 446 deletions
+8 -6
View File
@@ -6,18 +6,20 @@ const queue = ref([
{
title: "Nothing played yet",
artists: ["... blah blah blah"],
image: "http://127.0.0.1:8900/images/defaults/5.webp",
_id: {
$oid: "",
},
},
]);
const folder_song_list = ref([])
const folder_list = ref([])
const folder_song_list = ref([]);
const folder_list = ref([]);
const current = ref({
title: "Nothing played yet",
artists: ["... blah blah blah"],
image: "http://127.0.0.1:8900/images/defaults/1.webp",
_id: {
$oid: "",
},
@@ -31,9 +33,9 @@ const prev = ref({
},
});
const album_song_list = ref([])
const album_info = ref([])
const album_artists = ref([])
const album_song_list = ref([]);
const album_info = ref([]);
const album_artists = ref([]);
const filters = ref([]);
const magic_flag = ref(false);
@@ -61,5 +63,5 @@ export default {
search_artists,
album_song_list,
album_info,
album_artists
album_artists,
};