Set highlight_tags_restrict to the channel buffers.

This commit is contained in:
poljar (Damir Jelić) 2018-02-24 17:56:29 +01:00
parent e0ca75b56a
commit 99bef42187

View file

@ -87,6 +87,9 @@ def matrix_create_room_buffer(server, room_id):
W.buffer_set(buf, "nicklist", "1")
W.buffer_set(buf, "nicklist_display_groups", "0")
# TODO make this configurable
W.buffer_set(buf, "highlight_tags_restrict", "matrix_message")
server.buffers[room_id] = buf
server.rooms[room_id] = MatrixRoom(room_id)