Merge pull request #27 from h1ddenpr0cess20/dev

bug fixes
This commit is contained in:
Dustin 2024-08-23 14:55:44 -04:00 committed by GitHub
commit e15cb743f4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -126,7 +126,7 @@ class ollamarama:
async def set_prompt(self, channel, sender, persona=None, custom=None, respond=True): async def set_prompt(self, channel, sender, persona=None, custom=None, respond=True):
#clear existing history #clear existing history
try: try:
await self.messages[channel][sender].clear() self.messages[channel][sender].clear()
except: except:
pass pass
if persona != None: if persona != None:
@ -244,7 +244,10 @@ class ollamarama:
#check if the message was sent after joining and not by the bot #check if the message was sent after joining and not by the bot
if message_time > self.join_time and sender != self.username: if message_time > self.join_time and sender != self.username:
await self.handle_message(message, sender, sender_display, channel) try:
await self.handle_message(message, sender, sender_display, channel)
except:
pass
async def main(self): async def main(self):
# Login, print "Logged in as @alice:example.org device id: RANDOMDID" # Login, print "Logged in as @alice:example.org device id: RANDOMDID"