Remove stray console.log
This commit is contained in:
parent
b6c578e3a2
commit
9064697123
1 changed files with 0 additions and 1 deletions
|
|
@ -50,7 +50,6 @@ const PlaylistActions = ({ className, ids, data, record, ...rest }) => {
|
||||||
httpClient(`${REST_URL}/playlist/${record.id}/tracks`, {
|
httpClient(`${REST_URL}/playlist/${record.id}/tracks`, {
|
||||||
headers: new Headers({ Accept: M3U_MIME_TYPE }),
|
headers: new Headers({ Accept: M3U_MIME_TYPE }),
|
||||||
}).then((res) => {
|
}).then((res) => {
|
||||||
console.log(res)
|
|
||||||
const blob = new Blob([res.body], { type: M3U_MIME_TYPE })
|
const blob = new Blob([res.body], { type: M3U_MIME_TYPE })
|
||||||
const url = window.URL.createObjectURL(blob)
|
const url = window.URL.createObjectURL(blob)
|
||||||
const link = document.createElement('a')
|
const link = document.createElement('a')
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue