Modifying the way isRead is handled to reduce false positives
[theonering] / src / gvoice / conversations.py
index 384fc4e..f29f5e6 100644 (file)
@@ -145,7 +145,7 @@ class MergedConversations(object):
                return similarConversations
 
        def _update_previous_related_conversation(self, relatedConversation, newConversation):
-               for commonField in ("isRead", "isSpam", "isTrash", "isArchived"):
+               for commonField in ("isSpam", "isTrash", "isArchived"):
                        newValue = getattr(newConversation, commonField)
                        setattr(relatedConversation, commonField, newValue)