Skip to content
Snippets Groups Projects
Commit 246a3b3d authored by Philipp Hörist's avatar Philipp Hörist
Browse files

Fix readmarker breaking merge

parent e2a2b2c6
No related branches found
No related tags found
No related merge requests found
......@@ -236,6 +236,9 @@ def _find_ancestor(self, message):
if row is None:
return None
if row.type == 'read_marker':
continue
if row.type != 'chat':
return None
......@@ -254,6 +257,9 @@ def _update_descendants(self, message):
if row is None:
return
if row.type == 'read_marker':
continue
if row.type != 'chat':
return
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment