From b2cfd7ed69619703fdcc02c003b608ce82eebed8 Mon Sep 17 00:00:00 2001 From: Sebastian Beckmann Date: Sat, 30 Aug 2025 18:12:07 +0200 Subject: [PATCH] Config: Use app_config instead of global_config for migration The data that should be migrated used to be in global.ini. Since the frontend migration, it would be copied to both app and user config, we can just use the app config here. --- src/Config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Config.cpp b/src/Config.cpp index aaeb32c3..34b3a18a 100644 --- a/src/Config.cpp +++ b/src/Config.cpp @@ -155,7 +155,7 @@ void Config::Save() json MigrateGlobalConfigData() { // Get existing global config - config_t *config = obs_frontend_get_global_config(); + config_t *config = obs_frontend_get_app_config(); json ret; // Move values to temporary JSON blob