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 763b791 commit a94cb0bCopy full SHA for a94cb0b
src/log.ts
@@ -121,11 +121,11 @@ export class Log {
121
AddOptionsToSearchParams(options, searchParams);
122
123
await this.config.applytoHTTPSOptions(requestOptions);
124
- console.log(requestURL.toString())
+
125
const req = await fetch(requestURL.toString(), requestOptions)
126
.then(response => {
127
const status = response.status;
128
- if (status == 200) {
+ if (status === 200) {
129
response.body.pipe(stream) // TODO: the follow search param still has the stream close prematurely based on my testing
130
} else if (status === 500) {
131
const v1status = response.body as V1Status;
0 commit comments