diff --git a/ethzlunch/bot.py b/ethzlunch/bot.py
index 4fe720dcc011aefa0eb08a12c70979819ba8bea9..bdab19b8c608065f6ab0e191f62ae568ff7a7958 100644
--- a/ethzlunch/bot.py
+++ b/ethzlunch/bot.py
@@ -349,9 +349,9 @@ class ETHzLunchBot(Plugin):
                 await reminder.remove_subscriber(subscribing_event=evt.redacts)
 
                 # If the reminder has no users left, cancel it
-                if not reminder.subscribed_users or reminder.event_id == evt.redacts:
-                    await reminder.cancel(redact_confirmation=True)
-                break
+                # if not reminder.subscribed_users or reminder.event_id == evt.redacts:
+                #     await reminder.cancel(redact_confirmation=True)
+                # break
 
     @event.on(EventType.ROOM_TOMBSTONE)
     async def tombstone(self, evt: StateEvent) -> None: