Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/webserver/http.rs
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@ async fn build_response_header_and_stream<S: Stream<Item = DbItem>>(
log::debug!("finished query");
continue;
}
DbItem::Error(source_err) if matches!(source_err.downcast_ref(), Some(&ErrorWithStatus { status: _ }) ) => return Err(source_err),
DbItem::Error(source_err) => head_context.handle_error(source_err).await?,
};
match page_context {
Expand Down