https://bugs.kde.org/show_bug.cgi?id=488954
--- Comment #5 from Tim <t...@jagenberg.info> --- Yep, it seems that change fixes it and gives the expected behaviour: ``` --- a/kcmodule/profiles/ExternalServiceSettings.cpp +++ b/kcmodule/profiles/ExternalServiceSettings.cpp @@ -102,7 +102,7 @@ void ExternalServiceSettings::load(QWindow *parentWindowForKAuth) const auto data = job->data(); setSavedBatteryConservationMode(data.value(QStringLiteral("batteryConservationModeEnabled")).toBool()); - setBatteryConservationMode(m_batteryConservationMode); + setBatteryConservationMode(m_savedBatteryConservationMode); m_isBatteryConservationModeSupported = true; }); } ``` -- You are receiving this mail because: You are watching all bug changes.