Fix: Missing config_redirect() call in classic installer

This commit is contained in:
LmeSzinc 2024-04-26 14:13:59 +08:00
parent 698cb75039
commit df3d61d2d6

View File

@ -98,6 +98,8 @@ class DeployConfig(ConfigModel):
if hasattr(self, key):
super().__setattr__(key, value)
self.config_redirect()
def write(self):
poor_yaml_write(self.config, self.file)