diff --git a/src/stream.rs b/src/stream.rs index 52aba63..c26c103 100644 --- a/src/stream.rs +++ b/src/stream.rs @@ -56,10 +56,10 @@ where tokio::select! { _ = self.make_progress() => { - return f.await; + f.await } output = &mut f => { - return output; + output } } }