@cooperation/vc-storage 1.0.15 → 1.0.16
Sign up to get free protection for your applications and to get access to all the features.
@@ -22,10 +22,10 @@ export class GoogleDriveStorage {
|
|
22
22
|
try {
|
23
23
|
const res = await fetch(url, {
|
24
24
|
method,
|
25
|
-
headers:
|
25
|
+
headers: {
|
26
26
|
Authorization: `Bearer ${this.accessToken}`,
|
27
27
|
...headers,
|
28
|
-
}
|
28
|
+
},
|
29
29
|
body,
|
30
30
|
});
|
31
31
|
// Check the Content-Type to ensure it's JSON before parsing
|