Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
soulgalore committed May 29, 2024
1 parent 6669e34 commit ee360f0
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions lib/firefox/firefoxBidi.js
Original file line number Diff line number Diff line change
Expand Up @@ -185,11 +185,15 @@ export class FirefoxBidi {
method: 'network.continueRequest',
params: {
request: parsedEvent.params.request.request,
headers: headers
headers
}
};
const a = await bidi.send(continueRequest);
console.log(a);
const result = await bidi.send(continueRequest);
if (result.type == 'success') {
log.info('success');
} else {
log.error(result);
}
}
});
}
Expand Down

0 comments on commit ee360f0

Please sign in to comment.