From 3b6c23079603b6ce0b8423cc2810bb39747dbe65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Tille?= Date: Mon, 15 Apr 2024 23:30:18 +0200 Subject: [PATCH] Add missing quote on room name for auto join --- conf/homeserver.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/homeserver.yaml b/conf/homeserver.yaml index 368a9df..a61ad43 100644 --- a/conf/homeserver.yaml +++ b/conf/homeserver.yaml @@ -1419,7 +1419,7 @@ account_threepid_delegates: {%- if auto_join_rooms %} auto_join_rooms: {%- for room in auto_join_rooms.split(',') %} - - {{ room }} + - '{{ room }}' {%- endfor %} {%- endif %}