fix catch block text

This commit is contained in:
HorizonCode 2023-05-12 13:34:11 +02:00
parent d89310bb2e
commit ca6d23f5ef

2
mod.ts
View File

@ -244,7 +244,7 @@ export class HTTPServer {
this.handleNotFound(routeRequest, routeReply, requestEvent); this.handleNotFound(routeRequest, routeReply, requestEvent);
} }
} catch (_err) { } catch (_err) {
// Ignore http that where closed before reply was sent // Ignore http connections that where closed before reply was sent
} }
} }