mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-16 23:11:34 +01:00
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.
This commit is contained in:
parent
088992a484
commit
1c7d85fdfe
2 changed files with 2 additions and 1 deletions
1
changelog.d/17308.doc
Normal file
1
changelog.d/17308.doc
Normal file
|
@ -0,0 +1 @@
|
|||
Add missing quotes for example for `exclude_rooms_from_sync`.
|
|
@ -4150,7 +4150,7 @@ By default, no room is excluded.
|
|||
Example configuration:
|
||||
```yaml
|
||||
exclude_rooms_from_sync:
|
||||
- !foo:example.com
|
||||
- "!foo:example.com"
|
||||
```
|
||||
|
||||
---
|
||||
|
|
Loading…
Reference in a new issue