Skip to content

Commit 90436c9

Browse files
committed
notifications: show notifications for all active dates
1 parent 458fac9 commit 90436c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/orgmode/notifications/init.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ function Notifications:get_tasks(time)
9191
local tasks = {}
9292
for _, orgfile in ipairs(Files.all()) do
9393
for _, headline in ipairs(orgfile:get_opened_unfinished_headlines()) do
94-
for _, date in ipairs(headline:get_deadline_and_scheduled_dates()) do
94+
for _, date in ipairs(headline:get_valid_dates_for_agenda()) do
9595
local reminders = self:_check_reminders(date, time)
9696
for _, reminder in ipairs(reminders) do
9797
table.insert(tasks, {

0 commit comments

Comments
 (0)