diff options
author | 2024-10-04 16:48:46 +0200 | |
---|---|---|
committer | 2024-10-04 16:48:46 +0200 | |
commit | 89c665481077dbc64645caf1161dcd15e7e2386f (patch) | |
tree | c83a4c5cbf0387ae0ec5f9a72ab92676d1ca3fe5 /runtime | |
parent | bc215f6077ae57fcf573cfa2efb98adfef144660 (diff) | |
download | iced-89c665481077dbc64645caf1161dcd15e7e2386f.tar.gz iced-89c665481077dbc64645caf1161dcd15e7e2386f.tar.bz2 iced-89c665481077dbc64645caf1161dcd15e7e2386f.zip |
Fix `Task::chain` when chained task is `Task::none`
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/src/task.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/src/task.rs b/runtime/src/task.rs index 3f97d134..4554c74b 100644 --- a/runtime/src/task.rs +++ b/runtime/src/task.rs @@ -117,7 +117,7 @@ impl<T> Task<T> { match self.0 { None => task, Some(first) => match task.0 { - None => Task::none(), + None => Task(Some(first)), Some(second) => Task(Some(boxed_stream(first.chain(second)))), }, } |