check if there are unprocessed task changes before skipping whole process

This commit is contained in:
iLLiCiTiT 2020-10-08 13:33:19 +02:00
parent 3d0ab220c5
commit 06cf676bf8

View file

@ -623,9 +623,10 @@ class SyncToAvalonEvent(BaseEvent):
# skip most of events where nothing has changed for avalon
if (
len(found_actions) == 1 and
found_actions[0] == "update" and
not updated
len(found_actions) == 1
and found_actions[0] == "update"
and not updated
and not self.modified_tasks_ftrackids
):
return True