We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3302e6e commit 114c44cCopy full SHA for 114c44c
1 file changed
src/lib/http-parser.ts
@@ -155,7 +155,7 @@ export class HarParser implements HttpParser<HarEntry> {
155
return "No response received\r\n";
156
}
157
158
- const statusLine = `${entry.response.httpVersion} ${entry.response.status} ${entry.response.statusText}`;
+ const statusLine = `${entry.response.httpVersion} ${entry.response.statusText}`;
159
const headers = entry.response.headers.map((h) => `${h.name}: ${h.value}`).join("\r\n");
160
const body = entry.response.content?.text || "";
161
0 commit comments