Merge branch 'vnext' into sw

This commit is contained in:
Danny Coates
2018-07-19 12:16:48 -07:00
3 changed files with 19 additions and 3 deletions

View File

@@ -279,7 +279,6 @@ function download(id, keychain, onprogress, canceller) {
const auth = await keychain.authHeader();
xhr.open('get', `/api/download/${id}`);
xhr.setRequestHeader('Authorization', auth);
xhr.setRequestHeader('Connection', 'close');
xhr.responseType = 'blob';
xhr.send();
onprogress([0, 1]);