Skip to content

Commit

Permalink
Minor fix to RumbleChatActor().quit() method
Browse files Browse the repository at this point in the history
- Now sets keep_running to False to kill all internal loops
  • Loading branch information
thelabcat committed May 10, 2024
1 parent 1f9e86a commit a2b84e7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/rumchat_actor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -387,6 +387,7 @@ def unpin_message(self):

def quit(self):
"""Shut down everything"""
self.keep_running = False
self.browser.quit()
# TODO how to close an SSEClient?
# self.ssechat.client.close()
Expand Down

0 comments on commit a2b84e7

Please sign in to comment.