Skip to content

Commit 1c7d85f

Browse files
authoredJun 18, 2024··
fix missing quotes for exclude_rooms_from_sync (#17308)
We tried to configure rooms `exclude_rooms_from_sync`. If we do not quote we get an error. The example should be valid.
1 parent 088992a commit 1c7d85f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
 

‎changelog.d/17308.doc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Add missing quotes for example for `exclude_rooms_from_sync`.

‎docs/usage/configuration/config_documentation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4150,7 +4150,7 @@ By default, no room is excluded.
41504150
Example configuration:
41514151
```yaml
41524152
exclude_rooms_from_sync:
4153-
- !foo:example.com
4153+
- "!foo:example.com"
41544154
```
41554155

41564156
---

0 commit comments

Comments
 (0)
Please sign in to comment.