Fixed typo

This commit is contained in:
Daniel Dayley 2023-04-18 08:55:13 -06:00
parent 338bbfc803
commit 434ac8bd59

View File

@ -69,7 +69,7 @@ class PersonaSkill(PersonaBaseSkill) :
for trigger in OFF_TRIGGERS :
matches = re.search(trigger, message.text)
if matches :
self.enabled_chats.remove(message.chat_dentifier)
self.enabled_chats.remove(message.chat_identifier)
return False
# We are responding in this chat and have not been asked to stop.
return True