File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ async function getResponseBody(response: Response): Promise<any> {
66 const isBlob = contentType.toLowerCase().startsWith('image/')
77 || contentType.toLowerCase().startsWith('application/pdf')
88 || contentType.toLowerCase().startsWith('application/zip')
9-    || contentType.toLowerCase().startsWith('application/octet-stream'); if (isJSON) {
9+  || contentType.toLowerCase().startsWith('application/octet-stream'); if (isJSON) {
1010 return await response.json();
1111 } else if (isBlob) {
1212 return await response.blob();
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ async function getResponseBody(response: Response): Promise<any> {
66 const isBlob = contentType.toLowerCase().startsWith('image/')
77 || contentType.toLowerCase().startsWith('application/pdf')
88 || contentType.toLowerCase().startsWith('application/zip')
9-    || contentType.toLowerCase().startsWith('application/octet-stream');
9+  || contentType.toLowerCase().startsWith('application/octet-stream');
1010 if (isJSON) {
1111 return await response.json();
1212 } else if (isBlob) {
                         You can’t perform that action at this time. 
           
                  
0 commit comments