From 3cb0e43e55245c4f30ea042f95158829602ac94b Mon Sep 17 00:00:00 2001 From: Aaron Liang <76561968+AaronL725@users.noreply.github.com> Date: Wed, 15 Jul 2026 11:50:07 +0800 Subject: [PATCH] fix: default standalone OIDC settings to enabled --- cpa_export.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpa_export.py b/cpa_export.py index 1357dca..aa1b150 100644 --- a/cpa_export.py +++ b/cpa_export.py @@ -39,7 +39,7 @@ class CpaExportSettings: if hotload_dir is not None and not hotload_dir.is_absolute(): hotload_dir = (_ROOT / hotload_dir).resolve() return cls( - enabled=bool(cfg.get("cpa_export_enabled", False)), + enabled=bool(cfg.get("cpa_export_enabled", True)), auth_dir=auth_dir, hotload_dir=hotload_dir, copy_to_hotload=bool(cfg.get("cpa_copy_to_hotload", False)),