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
The server uses this to determine which of two bookmarks being merged is more recent:
more_recent: "Bookmark"=sorted(
(self, other),
# 1. Take the most recently updated.# 2. If they're equally recent, take the longer title# 3. If that's not enough add the longest description# 4. If that's not enough compare the titles# 5. If that's not enough compare the description# 6. Then compare everything elsekey=lambdab: (
b.updated,
len(b.title),
len(b.description),
b.title,
b.description,
b.unread,
notb.deleted,
),
reverse=True,
)[0]
The server uses this to determine which of two bookmarks being merged is more recent:
The extension uses just this:
These need to be brought into line with each other
The text was updated successfully, but these errors were encountered: