buffer: Don't put a space in the matrix_id tag.

This commit is contained in:
Damir Jelić 2018-11-09 17:57:26 +01:00
parent f1e96f7a28
commit a08400c975

View file

@ -1365,7 +1365,7 @@ class RoomBuffer(object):
tag for tag in tags
if not tag.startswith(SCRIPT_NAME + "_uuid_")
]
new_tags.append(SCRIPT_NAME + "_id_ " + new_message.event_id)
new_tags.append(SCRIPT_NAME + "_id_" + new_message.event_id)
line.tags = new_tags
def old_redacted(self, event):