Commit ddfe35b2 authored by JC Brand's avatar JC Brand

Set proper content type for file upload

parent 45d14406
...@@ -225,7 +225,7 @@ ...@@ -225,7 +225,7 @@
}); });
}; };
xhr.open('PUT', this.get('put'), true); xhr.open('PUT', this.get('put'), true);
xhr.setRequestHeader("Content-type", 'application/octet-stream'); xhr.setRequestHeader("Content-type", this.get('file').type);
xhr.send(this.get('file')); xhr.send(this.get('file'));
} }
}); });
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment