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
-1
View File
@@ -57,7 +57,6 @@ export default {
if (state.album_artists.value.length == 0) {
album.getAlbumArtists(title, album_artists).then((data) => {
state.album_artists.value = data;
console.log(state.album_artists.value)
});
}
});
+1 -1
View File
@@ -14,7 +14,7 @@
<script>
import Header from "@/components/PlaylistView/Header.vue";
import SongList from "@/components/PlaylistView/SongList.vue";
import SongList from "@/components/FolderView/SongList.vue";
import FeaturedArtists from "@/components/PlaylistView/FeaturedArtists.vue";
export default {