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 9ba5841 commit d337888Copy full SHA for d337888
src/exceptions/FortniteAPIError.ts
@@ -30,6 +30,7 @@ class FortniteAPIError extends Error {
30
this.name = 'FortniteAPIError';
31
this.message = error.error;
32
33
+ this.method = request.method?.toUpperCase() ?? 'GET'
34
this.url = request.url!;
35
this.httpStatus = status;
36
this.requestParams = request.params;
0 commit comments