1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-16 09:10:35 +03:00

plugins/inara: Avoid Tk event_generate() calls during shutdown

# Conflicts:
#	plugins/inara.py
This commit is contained in:
Athanasius 2021-03-22 14:18:58 +00:00
parent db48b6eaad
commit 3ed08f0f7e

View File

@ -1315,16 +1315,14 @@ def send_data(url: str, data: Mapping[str, Any]) -> bool:
'setCommanderTravelLocation'
):
this.lastlocation = reply_event.get('eventData', {})
# calls update_location in main thread
if not config.shutting_down:
# calls update_location in main thread
this.system_link.event_generate('<<InaraLocation>>', when="tail")
elif data_event['eventName'] in ['addCommanderShip', 'setCommanderShip']:
this.lastship = reply_event.get('eventData', {})
# calls update_ship in main thread
if not config.shutting_down:
# calls update_ship in main thread
this.system_link.event_generate('<<InaraShip>>', when="tail")
return True # regardless of errors above, we DID manage to send it, therefore inform our caller as such