Merge pull request #257 from eltociear/patch-5

Update server.py
This commit is contained in:
killian 2024-05-04 13:38:45 -07:00 committed by GitHub
commit f1b9d7fe97
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -355,7 +355,7 @@ async def listener(mobile: bool):
json.dump(interpreter.messages, file, indent=4) json.dump(interpreter.messages, file, indent=4)
# TODO: is triggering seemingly randomly # TODO: is triggering seemingly randomly
# logger.info("New user message recieved. Breaking.") # logger.info("New user message received. Breaking.")
# break # break
# Also check if there's any new computer messages # Also check if there's any new computer messages
@ -363,7 +363,7 @@ async def listener(mobile: bool):
with open(conversation_history_path, "w") as file: with open(conversation_history_path, "w") as file:
json.dump(interpreter.messages, file, indent=4) json.dump(interpreter.messages, file, indent=4)
logger.info("New computer message recieved. Breaking.") logger.info("New computer message received. Breaking.")
break break
except: except:
traceback.print_exc() traceback.print_exc()