Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions appdaemon/threads.py
Original file line number Diff line number Diff line change
Expand Up @@ -857,9 +857,9 @@ async def dispatch_worker(self, name: str, args: dict[str, Any]):
)
if not constrained:
unconstrained = False
if not await self.check_time_constraint(self.AD.app_management.app_config[name], name):
if not await self.check_time_constraint(self.AD.app_management.app_config[name].args, name):
unconstrained = False
elif not await self.check_days_constraint(self.AD.app_management.app_config[name], name):
elif not await self.check_days_constraint(self.AD.app_management.app_config[name].args, name):
unconstrained = False

#
Expand Down
Loading