aquatic_http: remove underscore from "failure_reason"

This commit is contained in:
Joakim Frostegård 2020-08-02 02:46:20 +02:00
parent e7de66603e
commit 9707898a32
2 changed files with 2 additions and 2 deletions

View file

@ -113,7 +113,7 @@ impl Connection {
}
}
for chunk in response_bytes.windows(18){
if chunk == b"d14:failure_reason" {
if chunk == b"d14:failure reason" {
state.statistics.responses_failure.fetch_add(1, Ordering::SeqCst);
return;