Skip to content
Closed
Changes from all commits
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
6 changes: 1 addition & 5 deletions src/protocols/protocol_filter_out_70015.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ bool protocol_filter_out_70015::handle_receive_get_filters(const code& ec,

span<milliseconds>(events::ancestry_msecs, start);
send_filter(error::success, ancestry);
return false;
return true;
}

void protocol_filter_out_70015::send_filter(const code& ec,
Expand All @@ -233,11 +233,7 @@ void protocol_filter_out_70015::send_filter(const code& ec,
return;

if (ancestry->empty())
{
// Complete, resubscribe to get_client_filters.
SUBSCRIBE_CHANNEL(get_client_filters, handle_receive_get_filters, _1, _2);
return;
}

const auto& query = archive();
const auto start = logger::now();
Expand Down
Loading