24
1
Fork 0

fixed getFileList when the response isn't OK

This commit is contained in:
Danny Coates 2018-09-24 12:23:46 -07:00
parent c8bf3101aa
commit 7eb7590f06
No known key found for this signature in database
GPG Key ID: 4C442633C62E00CB
1 changed files with 5 additions and 2 deletions

View File

@ -359,7 +359,10 @@ export function downloadFile(id, keychain, onprogress) {
export async function getFileList(bearerToken) {
const headers = new Headers({ Authorization: `Bearer ${bearerToken}` });
const response = await fetch('/api/filelist', { headers });
return response.body; // stream
if (response.ok) {
return response.body; // stream
}
throw new Error(response.status);
}
export async function setFileList(bearerToken, data) {
@ -369,5 +372,5 @@ export async function setFileList(bearerToken, data) {
method: 'POST',
body: data
});
return response.status === 200;
return response.ok;
}