From 45d145a2811cab9ce85ad71d515a17f3b568ef20 Mon Sep 17 00:00:00 2001 From: Simon Frei Date: Sun, 16 Jan 2022 19:06:50 +0100 Subject: [PATCH] gui: Fix bug saving settings (fixes #8116) (#8117) --- gui/default/syncthing/core/syncthingController.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/default/syncthing/core/syncthingController.js b/gui/default/syncthing/core/syncthingController.js index e35ad1d12..51fd73b9e 100755 --- a/gui/default/syncthing/core/syncthingController.js +++ b/gui/default/syncthing/core/syncthingController.js @@ -1517,7 +1517,7 @@ angular.module('syncthing.core') // here as well... $scope.devices = deviceMap($scope.config.devices); - $scope.saveConfig.then(function () { + $scope.saveConfig().then(function () { if (themeChanged) { document.location.reload(true); }