summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-10-04 16:48:46 +0200
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-10-04 16:48:46 +0200
commit89c665481077dbc64645caf1161dcd15e7e2386f (patch)
treec83a4c5cbf0387ae0ec5f9a72ab92676d1ca3fe5 /runtime
parentbc215f6077ae57fcf573cfa2efb98adfef144660 (diff)
downloadiced-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.rs2
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)))),
},
}