summaryrefslogtreecommitdiffstats
path: root/pkg/config/user_config.go
diff options
context:
space:
mode:
authorStefan Haller <stefan@haller-berlin.de>2023-03-29 11:42:37 +0200
committerStefan Haller <stefan@haller-berlin.de>2023-04-13 13:14:00 +0200
commitb7e029adc7c5cf27ae2c5db768b971a959fa2449 (patch)
treeaf4e36f76508ac9690427dbc02e2aeee0b7f923d /pkg/config/user_config.go
parent08d679c3a8524610e3f30e8d5ece71d522d70c68 (diff)
Don't set platform defaults on OSConfig struct immediately
Instead, query the platform defaults only if the config is empty. This will be necessary later to distinguish an empty config from a default config, so that we can give deprecation warnings.
Diffstat (limited to 'pkg/config/user_config.go')
-rw-r--r--pkg/config/user_config.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/config/user_config.go b/pkg/config/user_config.go
index a7be98c9c..0c227899e 100644
--- a/pkg/config/user_config.go
+++ b/pkg/config/user_config.go
@@ -599,7 +599,7 @@ func GetDefaultConfig() *UserConfig {
BulkMenu: "b",
},
},
- OS: GetPlatformDefaultConfig(),
+ OS: OSConfig{},
DisableStartupPopups: false,
CustomCommands: []CustomCommand(nil),
Services: map[string]string(nil),