Skip to content
Open
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
2 changes: 1 addition & 1 deletion SyncEngine/ContactsList.swift
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ struct ContactView: View {
extension Contact {

// In order for the list to update properly when fetch changes from the cloud, we need to use something other than the contact ID for the list item ID.
var listID: String { "\(self.id)\(Self.listIDSeparator)\(self.name)" }
var listID: String { "\(self.id)\(Self.listIDSeparator)\(self.userModificationDate)" }

static let listIDSeparator = "::"

Expand Down