summaryrefslogtreecommitdiff
path: root/ext/http/fly_accept_encoding.rs
diff options
context:
space:
mode:
Diffstat (limited to 'ext/http/fly_accept_encoding.rs')
-rw-r--r--ext/http/fly_accept_encoding.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/http/fly_accept_encoding.rs b/ext/http/fly_accept_encoding.rs
index 94e336876..4d6fd2231 100644
--- a/ext/http/fly_accept_encoding.rs
+++ b/ext/http/fly_accept_encoding.rs
@@ -119,7 +119,7 @@ fn encodings_iter_inner<'s>(
};
Some(Ok((encoding, qval)))
})
- .map(|r| r?) // flatten Result<Result<...
+ .flatten()
}
#[cfg(test)]