fix: Update comment in src/core/config/mod.rs
This commit is contained in:
parent
5dc449a87a
commit
64e187e5b4
2 changed files with 7 additions and 5 deletions
|
|
@ -586,10 +586,9 @@
|
|||
#allow_unstable_room_versions = true
|
||||
|
||||
# Default room version continuwuity will create rooms with.
|
||||
#
|
||||
# Note that this has to be a string since the room version is a string
|
||||
# rather than an integer. Using an integer without the quotes will make
|
||||
# the server fail on startup!
|
||||
# rather than an integer. Forgetting the quotes will make the server fail
|
||||
# to start!
|
||||
#
|
||||
# Per spec, room version "11" is the default.
|
||||
#
|
||||
|
|
|
|||
|
|
@ -703,10 +703,13 @@ pub struct Config {
|
|||
pub allow_unstable_room_versions: bool,
|
||||
|
||||
/// Default room version continuwuity will create rooms with.
|
||||
/// Note that this has to be a string since the room version is a string
|
||||
/// rather than an integer. Forgetting the quotes will make the server fail
|
||||
/// to start!
|
||||
///
|
||||
/// Per spec, room version 11 is the default.
|
||||
/// Per spec, room version "11" is the default.
|
||||
///
|
||||
/// default: 11
|
||||
/// default: "11"
|
||||
#[serde(default = "default_default_room_version")]
|
||||
pub default_room_version: RoomVersionId,
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue