diff --git a/functions/index.js b/functions/index.js index 057468cf7..9bede8782 100644 --- a/functions/index.js +++ b/functions/index.js @@ -898,7 +898,10 @@ exports.saveConfig = functions.https.onCall((request, response) => { { merge: true } ) .then((e) => { - return 1; + return { + returnCode: 1, + message: "Saved", + }; }) .catch((e) => { console.error( diff --git a/public/index.html b/public/index.html index 191edcf5a..ce9149193 100644 --- a/public/index.html +++ b/public/index.html @@ -1509,6 +1509,21 @@ +