Skip to content

Commit

Permalink
fix: fileforge hack should set content-type to application/json (#836)
Browse files Browse the repository at this point in the history
  • Loading branch information
abvthecity authored May 9, 2024
1 parent 7ecfa21 commit d6c0943
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export async function buildRequestBody(body: ProxyRequest.SerializableBody | und
} else if (body.isJsonBlob) {
return [
key,
new Blob([JSON.stringify(value.value)], { type: value.contentType }),
new Blob([JSON.stringify(value.value)], { type: "application/json" }),
] as const;
}
return [key, JSON.stringify(value.value)] as const;
Expand Down

0 comments on commit d6c0943

Please sign in to comment.