Skip to content

Commit 18c20d4

Browse files
committed
fix error from merge conflict resolution
1 parent 2a0c4ea commit 18c20d4

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
@@ -56,7 +56,7 @@ class Server<A> {
5656
}
5757
catch (e) {
5858
if (e instanceof Request.BadUrlError) {
59-
await this.errors._get(ServerErrorRegistry.ErrorCodes.BAD_URL, null)._send(res, this);
59+
await this.errors._get(ServerErrorRegistry.ErrorCodes.BAD_URL, null)._send(res);
6060
return;
6161
}
6262
if (e instanceof Request.SocketClosedError)

0 commit comments

Comments
 (0)