Skip to content

Commit

Permalink
disabled fatal error function
Browse files Browse the repository at this point in the history
  • Loading branch information
Lioncat6 committed Mar 3, 2024
1 parent 47b7614 commit 7e34790
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions osc-chat-tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,8 @@ def outputQueue():
windowAccess['output'].Widget.see('end')
except Exception as e:
if run:
fatal_error(e)
pass
#fatal_error(e)
message_queue.clear()
outputQueueHandler = Thread(target=outputQueue)
outputQueueHandler.start()
Expand Down Expand Up @@ -1230,7 +1231,8 @@ def updateUI():
window['spotifyIcon'].update(visible=False)
except Exception as e:
if run:
fatal_error(e)
pass
#fatal_error(e)
if run:
time.sleep(.1)
updateUIThread = Thread(target=updateUI)
Expand Down

0 comments on commit 7e34790

Please sign in to comment.