From acfe9f2717e54d39d478beaedc1d3324daf03ba0 Mon Sep 17 00:00:00 2001 From: David Sangrey Date: Fri, 17 Nov 2023 18:09:09 -0500 Subject: [PATCH] [2051] Wait we did account for that --- EDMarketConnector.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/EDMarketConnector.py b/EDMarketConnector.py index 21f9708c..00c42a69 100755 --- a/EDMarketConnector.py +++ b/EDMarketConnector.py @@ -1007,7 +1007,7 @@ class AppWindow: commodities_flag = config.OUT_MKT_CSV | config.OUT_MKT_TD if output_flags & config.OUT_STATION_ANY: - if not is_docked and not monitor.state['OnFoot'] and not self.status['text']: + if not is_docked and not monitor.state['OnFoot']: # Signal as error because the user might actually be docked # but the server hosting the Companion API hasn't caught up # LANG: Player is not docked at a station, when we expect them to be @@ -1015,11 +1015,11 @@ class AppWindow: return False # Ignore possibly missing shipyard info - if output_flags & config.OUT_EDDN_SEND_STATION_DATA and not (has_commodities or has_modules) and not self.status['text']: + if output_flags & config.OUT_EDDN_SEND_STATION_DATA and not (has_commodities or has_modules): # LANG: Status - Either no market or no modules data for station from Frontier CAPI self._handle_status(_("Station doesn't have anything!")) - elif not has_commodities and not self.status['text']: + elif not has_commodities: # LANG: Status - No station market data from Frontier CAPI self._handle_status(_("Station doesn't have a market!"))