Bugfix audio player

Bugfix Debugfile export
This commit is contained in:
Ozzie Isaacs
2022-04-28 21:40:48 +02:00
parent a968ddaef2
commit ef4b5e2881
3 changed files with 8 additions and 8 deletions

View File

@@ -296,7 +296,7 @@ class _ConfigSQL(object):
def toDict(self):
storage = {}
for k, v in self.__dict__.items():
if k[0] != '_' and not k.endswith("password") and not k.endswith("secret"):
if k[0] != '_' and not k.endswith("password") and not k.endswith("secret") and not k == "cli":
storage[k] = v
return storage