diff options
| author | Tim Keller <tjk@tjkeller.xyz> | 2025-06-16 21:58:13 -0500 |
|---|---|---|
| committer | Tim Keller <tjk@tjkeller.xyz> | 2025-06-16 21:58:13 -0500 |
| commit | c5465f7ceed37f1ba6575248e1035e1430e78921 (patch) | |
| tree | d8d49d0b716f7188ffe2c27b4ca92361905215d2 /manager.py | |
| parent | b8df4605b42d9a61bb4ae4731efabbdc38166063 (diff) | |
| download | immich-frame-c5465f7ceed37f1ba6575248e1035e1430e78921.tar.xz immich-frame-c5465f7ceed37f1ba6575248e1035e1430e78921.zip | |
config route and fix config saving/creation
Diffstat (limited to 'manager.py')
| -rw-r--r-- | manager.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -49,7 +49,7 @@ class PixMan: signal.signal(signal.SIGINT, PixMan.handle_sigint) self.configfile = configfile - config = Config.load(self.configfile) if os.path.exists(self.configfile) else Config(file=self.configfile) + config = Config.load(self.configfile) if os.path.exists(self.configfile) else Config() self.init_web(host, port) self.update_config(config) |
