Skip to content

Commit

Permalink
workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
mrvladus committed Apr 30, 2024
1 parent c8c839f commit 30f4a83
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion errands/lib/sync/providers/caldav.py
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,9 @@ def __update_local_task(
updated_props.append(key)
updated_values.append(getattr(remote_task, key))

if not updated_props:
if not updated_props or (
updated_props == ["changed_at"] and updated_values == [""]
):
return

Log.debug(f"Sync: Update local task '{task.uid}'. Updated: {updated_props}")
Expand Down

0 comments on commit 30f4a83

Please sign in to comment.