Compare commits

..

1 Commits

Author SHA1 Message Date
dw-0
065fc1ff7f Merge d5ec761f5f into 5eff560627 2024-06-19 21:17:12 +02:00

View File

@@ -124,7 +124,7 @@ class KiauhSettings:
self._load_config()
def _load_config(self) -> None:
if not self._custom_cfg.exists() and not self._default_cfg.exists():
if not self._custom_cfg.exists() or not self._default_cfg.exists():
self._kill()
cfg = self._custom_cfg if self._custom_cfg.exists() else self._default_cfg