From e94a58074881c94ecf07978366b6f6e9a9d33b6e Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sat, 11 Jul 2020 23:39:30 +0100 Subject: [PATCH] Allow reminders --- followingCalendar.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/followingCalendar.py b/followingCalendar.py index 86ee92b67..f414634b7 100644 --- a/followingCalendar.py +++ b/followingCalendar.py @@ -15,6 +15,9 @@ def receivingCalendarEvents(baseDir: str, nickname: str, domain: str, """Returns true if receiving calendar events from the given account from following.txt """ + if followingNickname == nickname and followingDomain == domain: + # reminder post + return True calendarFilename = baseDir + '/accounts/' + \ nickname + '@' + domain + '/followingCalendar.txt' handle = followingNickname + '@' + followingDomain