diff --git a/server/app/api.py b/server/app/api.py index fc0fbea2..1a1ece7e 100644 --- a/server/app/api.py +++ b/server/app/api.py @@ -353,8 +353,8 @@ def getAlbums(): @bp.route('/albums/') def getAlbumSongs(query: str): - album = query.split('::')[0] - artist = query.split('::')[1] + album = query.split('::')[0].replace('|', '/') + artist = query.split('::')[1].replace('|', '/') songs = all_songs_instance.find_songs_by_album(album, artist) songs_array = convert_to_json(songs) diff --git a/src/components/FolderView/FolderList.vue b/src/components/FolderView/FolderList.vue index 0d9e0676..106f644f 100644 --- a/src/components/FolderView/FolderList.vue +++ b/src/components/FolderView/FolderList.vue @@ -84,11 +84,6 @@ export default { } .f-container .f-item:hover { - transition: all 0.2s ease; - background: #000000; - background: no-repeat 8%/100% url(../../assets/icons/folder.svg), - -webkit-linear-gradient(to bottom, #434343, #000000); - background: no-repeat 8%/10% url(../../assets/icons/folder.svg), - linear-gradient(to bottom, #434343, #000000); + background-color: $blue; } \ No newline at end of file diff --git a/src/components/FolderView/SongList.vue b/src/components/FolderView/SongList.vue index e0bdd3f4..0b741231 100644 --- a/src/components/FolderView/SongList.vue +++ b/src/components/FolderView/SongList.vue @@ -86,7 +86,6 @@ export default { const putCommas = perks.putCommas; const updateQueue = async (song) => { - console.log(song.artists.length); if (perks.queue.value[0]._id.$oid !== song_list.value[0]._id.$oid) { const queue = song_list.value; localStorage.setItem("queue", JSON.stringify(queue)); diff --git a/src/components/LeftSidebar/Navigation.vue b/src/components/LeftSidebar/Navigation.vue index edd8096c..b2bff3fb 100644 --- a/src/components/LeftSidebar/Navigation.vue +++ b/src/components/LeftSidebar/Navigation.vue @@ -73,13 +73,16 @@ export default {