We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 227d9ff commit 3e8b295Copy full SHA for 3e8b295
packages/azure-store/src/index.ts
@@ -117,7 +117,7 @@ export class AzureStore extends DataStore {
117
const upload = JSON.parse(propertyData.metadata.upload) as Upload
118
// Metadata is base64 encoded to avoid errors for non-ASCII characters
119
// so we need to decode it separately
120
- upload.metadata = Metadata.parse(JSON.stringify(upload.metadata ?? {}))
+ upload.metadata = upload.metadata ? Metadata.parse(upload.metadata) : {}
121
122
await this.cache.set(appendBlobClient.url, upload)
123
0 commit comments