feat: scrobbling

This commit is contained in:
Deluan
2020-02-05 10:11:42 -05:00
parent 4a82a6cb02
commit 18c7397709
3 changed files with 40 additions and 6 deletions
-1
View File
@@ -10,7 +10,6 @@ const AddToQueueButton = ({ selectedIds }) => {
const addToQueue = () => {
selectedIds.forEach((id) => {
dataProvider.getOne('song', { id }).then((response) => {
console.log(response.data)
dispatch(addTrack(response.data))
})
})