diff options
Diffstat (limited to 'hatask.ha')
| -rw-r--r-- | hatask.ha | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -37,7 +37,7 @@ fn listtasks(root: str = "tasks", context: str = "*") ([]task | rtaskerror | if (fs::isdir(dirent.ftype)) { let buf = path::init()?; const p = path::push(&buf, root, dirent.name)?; - listtasks(p)?; + append(tasks, listtasks(p)?...); } else { let buf = path::init()?; const p = path::push(&buf, root, dirent.name)?; |
