mirror of https://github.com/vector-im/riot-web
Don't send options we don't need to `fetch`
parent
62ba7dde94
commit
8d14dc4e26
|
@ -401,12 +401,7 @@ module.exports = React.createClass({
|
||||||
|
|
||||||
// Start a fetch for the download
|
// Start a fetch for the download
|
||||||
// Based upon https://stackoverflow.com/a/49500465
|
// Based upon https://stackoverflow.com/a/49500465
|
||||||
fetch(contentUrl, {
|
fetch(contentUrl).then((response) => response.blob()).then((blob) => {
|
||||||
headers: new Headers({
|
|
||||||
'Origin': window.location.origin,
|
|
||||||
}),
|
|
||||||
mode: 'cors',
|
|
||||||
}).then((response) => response.blob()).then((blob) => {
|
|
||||||
const blobUrl = URL.createObjectURL(blob);
|
const blobUrl = URL.createObjectURL(blob);
|
||||||
|
|
||||||
// We have to create an anchor to download the file
|
// We have to create an anchor to download the file
|
||||||
|
|
Loading…
Reference in New Issue