Attempt to fix segfault I just reverted

This commit is contained in:
Zachary D. Rowitsch
2023-11-30 20:08:26 -05:00
parent 35e7935779
commit d4c60a2086

@ -488,7 +488,7 @@ bool HttpServer::gotDoc ( int32_t n, TcpSocket *s ) {
s = unzipReply(s);
}
// callback
callback ( state, s );
if (callback) callback ( state, s );
return true;
}