Skip to content

Commit

Permalink
pass args to super for sake for sanity
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed Oct 7, 2024
1 parent 0c6eada commit bed1453
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/runtime/node/tls/internal/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export class Server extends _Server implements tls.Server {
arg1?: tls.TlsOptions | ((socket: tls.TLSSocket) => void),
arg2?: (socket: tls.TLSSocket) => void,
) {
super();
super(arg1 as any, arg2 as any);
}

addContext(hostname: string, context: tls.SecureContextOptions) {}
Expand Down

0 comments on commit bed1453

Please sign in to comment.