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 7702b45 commit 41cbbcaCopy full SHA for 41cbbca
packages/core/src/submission/DefaultSubmissionClient.ts
@@ -13,7 +13,7 @@ export class DefaultSubmissionClient implements ISubmissionClient {
13
protected readonly ConfigurationVersionHeader: string =
14
"x-exceptionless-configversion";
15
16
- public constructor(protected config: Configuration, private fetch = globalThis.fetch) { }
+ public constructor(protected config: Configuration, private fetch = globalThis.fetch.bind(globalThis)) { }
17
18
public getSettings(version: number): Promise<Response<ServerSettings>> {
19
const url = `${this.config.serverUrl}/api/v2/projects/config?v=${version}`;
0 commit comments