You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm working to integrate Google tasks with org-sync and since gtasks IDs are strings and not numbers the dedup function org-sync-buglist-dups cannot detect duplicates.
The potential fix is to define the has table with a different equality test like:
(hash (make-hash-table :test `equal))
If that's not breaking anything else I can make PR for this change
The text was updated successfully, but these errors were encountered:
I'm working to integrate Google tasks with org-sync and since gtasks IDs are strings and not numbers the dedup function
org-sync-buglist-dups
cannot detect duplicates.The potential fix is to define the has table with a different equality test like:
If that's not breaking anything else I can make PR for this change
The text was updated successfully, but these errors were encountered: