handleDownload()

in src/components/Player.js [118:124]


    handleDownload(url) {
        var _url = new Url(url);
        var fileName = _url.pathname.substring(_url.pathname.lastIndexOf('/') + 1)

        axios.get(url, { responseType: 'arraybuffer' }).then((res) => { 
            fileDownload(res.data, fileName, "application/octet-stream");})
    }