We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 475ac48 commit 102811eCopy full SHA for 102811e
1 file changed
obplayer/data.py
@@ -753,6 +753,6 @@ def save_settings(self, settings):
753
def list_settings(self, hidepasswords=False):
754
result = {}
755
for name, value in self.settings_cache.items():
756
- 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'):
757
result[name] = value
758
return result
0 commit comments