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 3d47831 commit 5bc1859Copy full SHA for 5bc1859
1 file changed
src/exceptions/FortniteAPIError.ts
@@ -9,7 +9,7 @@ class FortniteAPIError extends Error {
9
* The HTTP method
10
*/
11
public method: string;
12
-
+
13
/**
14
* The URL of the requested API endpoint
15
@@ -35,7 +35,7 @@ class FortniteAPIError extends Error {
35
this.name = 'FortniteAPIError';
36
this.message = error.error;
37
38
- this.method = request.method?.toUpperCase() ?? 'GET'
+ this.method = request.method?.toUpperCase() ?? 'GET';
39
this.url = request.url!;
40
this.httpStatus = status;
41
this.requestParams = request.params;
0 commit comments