-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Address Book encryption follow up tweaks #1408
Comments
Copying some comment threads. Concerning the call to
@LukasKorba replied:
and in
|
Also we should probably record the reason for failure (i.e. the exception object) in the |
https://github.com/Electric-Coin-Company/zashi-ios/pull/1409/files#r1848385658 : - if $0.lastUpdated > contact.lastUpdated {
+ // If the timestamps are equal, the local entry takes priority.
+ if $0.lastUpdated >= contact.lastUpdated {
|
Merge strategy (This function mixes the merge with the rest of the store logic. I would factor the merge out, since that's a pure function. Maybe also add a test for the merge.)
Merge strategy O(n*n)
Error handling in UI (TODOs in the code)
merge strategy enhancements
Deletion of a contact and sync between local vs. remote
redundancy in store of local contacts optimization
The text was updated successfully, but these errors were encountered: