Skip to content

Commit

Permalink
fix: incorrect method call
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael committed Oct 27, 2022
1 parent 92574be commit 47b2b33
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions lib/core/urbex.ts
Original file line number Diff line number Diff line change
Expand Up @@ -186,9 +186,7 @@ forEach(["delete", "get", "head", "options"], (_, value: MethodsLower) => {
url: ConfigurableClientUrl,
config?: NullableRequestBody
) {
return this.send(
this.createMethodConfig(uppercase(value), url, config)
);
return this.send(createMethodConfig(uppercase(value), url, config));
};
});

Expand Down

0 comments on commit 47b2b33

Please sign in to comment.