mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
configpanel: oopsies, super()._apply() was only called when changing the default app :P
This commit is contained in:
parent
adb0e67b25
commit
0a59f86329
1 changed files with 7 additions and 1 deletions
|
@ -469,7 +469,13 @@ class DomainConfigPanel(ConfigPanel):
|
|||
other_app=app_map(raw=True)[self.entity]["/"]["id"],
|
||||
)
|
||||
|
||||
super()._apply()
|
||||
super()._apply()
|
||||
|
||||
# Reload ssowat if default app changed
|
||||
if (
|
||||
"default_app" in self.future_values
|
||||
and self.future_values["default_app"] != self.values["default_app"]
|
||||
):
|
||||
app_ssowatconf()
|
||||
|
||||
def _get_toml(self):
|
||||
|
|
Loading…
Add table
Reference in a new issue