Skip to content

Commit

Permalink
Fix bundle controller (#182)
Browse files Browse the repository at this point in the history
Co-authored-by: Val <[email protected]>
  • Loading branch information
vpowler and v-0-0 authored Feb 14, 2022
1 parent ce7506c commit 8136dcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/controller/bundle.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export class BundleController extends BaseController {

await streamFinished(bundleStream);

res.status(200).send(result).end();
res.status(200).setHeader('Content-Type', 'application/json; charset=utf-8').send(result).end();
}

@httpGet('/:bundleId/info')
Expand Down

0 comments on commit 8136dcd

Please sign in to comment.