forked from mirror/async-std
Update src/stream/stream/flatten.rs
Co-Authored-By: Taiki Endo <te316e89@gmail.com>
This commit is contained in:
parent
bf3508ffb2
commit
8932cecec7
1 changed files with 1 additions and 1 deletions
|
@ -116,7 +116,7 @@ where
|
||||||
|
|
||||||
match futures_core::ready!(this.stream.as_mut().poll_next(cx)) {
|
match futures_core::ready!(this.stream.as_mut().poll_next(cx)) {
|
||||||
None => return Poll::Ready(None),
|
None => return Poll::Ready(None),
|
||||||
Some(inner) => *this.frontiter = Some(inner.into_stream()),
|
Some(inner) => this.frontiter.set(Some(inner.into_stream())),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue