From 2a35b55cff39a742996e3fb634e6ac4894c21f0c Mon Sep 17 00:00:00 2001 From: alexsparkes Date: Sat, 7 Feb 2026 20:49:16 +0000 Subject: [PATCH] fix: Correct parameter key usage in fetchFromProvider function for settings handling --- src/features/background/api/photoPackAPI.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/features/background/api/photoPackAPI.js b/src/features/background/api/photoPackAPI.js index 23c4440e..250b668b 100644 --- a/src/features/background/api/photoPackAPI.js +++ b/src/features/background/api/photoPackAPI.js @@ -142,12 +142,12 @@ export async function fetchFromProvider(packId, pack, settings) { } } else { pack.settings_schema?.forEach((setting) => { - let value = settings[setting.id]; + let value = settings[setting.key]; if (setting.secure && value) { value = atob(value); } if (value !== undefined && value !== null && value !== '') { - params.append(setting.id, value); + params.append(setting.key, value); } }); }