diff --git a/AUTHORS b/AUTHORS index de7e4b95..c630b807 100644 --- a/AUTHORS +++ b/AUTHORS @@ -52,3 +52,5 @@ TaunoTinits, https://github.com/TaunoTinits ostracon, https://github.com/ostracon mattcl, https://github.com/mattcl Boris Peterbarg, https://github.com/reist +unicolet, https://github.com/unicolet + diff --git a/will/plugins/productivity/remind.py b/will/plugins/productivity/remind.py index 1f5b10be..206373aa 100644 --- a/will/plugins/productivity/remind.py +++ b/will/plugins/productivity/remind.py @@ -19,7 +19,7 @@ def remind_me_at(self, message, reminder_text=None, remind_time=None, to_string= "reminder_text": reminder_text, "to_string": formatted_to_string, } - self.schedule_say(formatted_reminder_text, parsed_time, message=message) + self.schedule_say(formatted_reminder_text, parsed_time, message=message, notify=True) self.say("%(reminder_text)s %(natural_datetime)s. Got it." % locals(), message=message) @respond_to("(?:can|will you )?remind (?P(?!me).*?)(?P to>) ?(?P.*?) (at|on|in) (?P.*)?\??") @@ -39,5 +39,5 @@ def remind_somebody_at(self, message, reminder_recipient=None, reminder_text=Non "to_string": formatted_to_string, } - self.schedule_say(formatted_reminder_text, parsed_time, message=message) + self.schedule_say(formatted_reminder_text, parsed_time, message=message, notify=True) self.say("%(reminder_text)s %(natural_datetime)s. Got it." % locals(), message=message)