diff --git a/plextraktsync/config/PlexServerConfig.py b/plextraktsync/config/PlexServerConfig.py index 99f96d25f5..394ab8355c 100644 --- a/plextraktsync/config/PlexServerConfig.py +++ b/plextraktsync/config/PlexServerConfig.py @@ -21,3 +21,10 @@ def asdict(self): del data["name"] return data + + @property + def sync_config(self): + if self.config is None or "sync" not in self.config or self.config["sync"] is None: + return {} + + return self.config["sync"]