Skip to content

Commit

Permalink
chore: fix logged content type
Browse files Browse the repository at this point in the history
  • Loading branch information
SgtPooki committed Apr 10, 2024
1 parent 864e810 commit 39ced5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/verified-fetch/src/verified-fetch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ export class VerifiedFetch {
this.log.error('error parsing content type', err)
}
}
this.log.trace('setting content type to "%s"', contentType)
this.log.trace('setting content type to "%s"', contentType ?? defaultContentType)
response.headers.set('content-type', contentType ?? defaultContentType)
}

Expand Down

0 comments on commit 39ced5e

Please sign in to comment.