diff --git a/obplayer/data.py b/obplayer/data.py index d18a9ec..0687960 100644 --- a/obplayer/data.py +++ b/obplayer/data.py @@ -753,6 +753,11 @@ def save_settings(self, settings): def list_settings(self, hidepasswords=False): result = {} for name, value in self.settings_cache.items(): - if not hidepasswords or not name.endswith("_password"): + if ( + not hidepasswords + or not name.endswith("_password") + and not name.endswith("_access_key") + and not name.endswith("_access_key_id") + ): result[name] = value return result