Skip to content

Commit 022736f

Browse files
debug more I guess
1 parent fa8be1a commit 022736f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/compass/src/main/application.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -473,8 +473,8 @@ class CompassApplication {
473473
await app.whenReady();
474474

475475
session.defaultSession.webRequest.onBeforeSendHeaders(
476-
allowedCloudEndpoints,
477476
(details, callback) => {
477+
console.log('DJECHLIN hello stuff 1', details);
478478
const filteredHeaders = Object.fromEntries(
479479
Object.entries(details.requestHeaders).filter(([name]) => {
480480
return !REQUEST_CORS_HEADERS.includes(name.toLowerCase());
@@ -487,6 +487,7 @@ class CompassApplication {
487487
session.defaultSession.webRequest.onHeadersReceived(
488488
allowedCloudEndpoints,
489489
(details, callback) => {
490+
console.log('DJECHLIN hello stuff 2', details);
490491
const filteredHeaders = Object.fromEntries(
491492
Object.entries(
492493
// Types are not matching documentation

0 commit comments

Comments
 (0)