summaryrefslogtreecommitdiff
path: root/internal/handlers/atoms.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/handlers/atoms.go')
-rw-r--r--internal/handlers/atoms.go5
1 files changed, 0 insertions, 5 deletions
diff --git a/internal/handlers/atoms.go b/internal/handlers/atoms.go
index fe092a3..9474150 100644
--- a/internal/handlers/atoms.go
+++ b/internal/handlers/atoms.go
@@ -91,13 +91,8 @@ func SortAtomsByUrgency(atoms []models.Atom) {
}
// PartitionAtomsByTime separates atoms into current and future lists
-// Recurring tasks that are future are excluded entirely
func PartitionAtomsByTime(atoms []models.Atom) (current, future []models.Atom) {
for _, a := range atoms {
- // Don't show recurring tasks until the day they're due
- if a.IsRecurring && a.IsFuture {
- continue
- }
if a.IsFuture {
future = append(future, a)
} else {