[web] Fix temporarily the bug #1688

This commit is contained in:
Alain Nussbaumer 2023-11-23 21:27:05 +01:00
parent 7d9b5dd948
commit dae6d1eebc

View File

@ -424,7 +424,9 @@ export default {
},
library_track(trackId) {
return axios.get(`./api/library/tracks/${trackId}`)
if (trackId) { // Temporary fix
return axios.get(`./api/library/tracks/${trackId}`)
}
},
library_track_playlists(trackId) {