Skip to content

Commit 3e33a0e

Browse files
committed
fix bug attempt 2
1 parent 8bdf443 commit 3e33a0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ class Server<A> {
5252
}
5353
catch (e) {
5454
if (e instanceof Request.BadUrlError) {
55-
await this.errors._get(ServerErrorRegistry.ErrorCodes.BAD_URL, null)._send(res, apiRequest);
55+
await this.errors._get(ServerErrorRegistry.ErrorCodes.BAD_URL, null)._send(res);
5656
return;
5757
}
5858
if (e instanceof Request.SocketClosedError)

0 commit comments

Comments
 (0)