--- trunk/lib/Frey/Server.pm 2008/11/26 07:58:05 533 +++ trunk/lib/Frey/Server.pm 2008/11/26 16:33:58 536 @@ -158,7 +158,10 @@ my $html = $f->html; die "no html output" unless $html; warn "## html ",length($html)," bytes"; - $req->print( "$html\n" ); + eval { + $req->print( $html ); + }; + die "can't send to wire: $@" if $@; } else { warn "# can't call request on nothing!"; } @@ -182,7 +185,7 @@ send_message($req); } - if ($req->conn ) { + if ( $req->conn ) { $req->conn->close; warn "## close connection: $@"; }