From f75d8c9c9c9a9e2bf53d68ab678a337d322aba15 Mon Sep 17 00:00:00 2001 From: Athanasius Date: Tue, 25 Aug 2020 13:37:26 +0100 Subject: [PATCH] plugins/edsm: Set system_link based on system_provider, not station_provider --- plugins/edsm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/edsm.py b/plugins/edsm.py index 790f9289..9c9d0070 100644 --- a/plugins/edsm.py +++ b/plugins/edsm.py @@ -295,7 +295,7 @@ def cmdr_data(data, is_beta): this.station = this.station or data['commander']['docked'] and data['lastStarport']['name'] # TODO: Fire off the EDSM API call to trigger the callback for the icons - if config.get('station_provider') == 'EDSM': + if config.get('system_provider') == 'EDSM': this.system_link['text'] = this.system this.system_link['url'] = system_url(this.system) this.system_link.update_idletasks()