TagInfo's order field should be a string. Fixes #4.
This commit is contained in:
parent
ead4e9f294
commit
422afdc2f2
@ -19,5 +19,5 @@ pub struct TagEventContent {
|
|||||||
pub struct TagInfo {
|
pub struct TagInfo {
|
||||||
/// Value to use for lexicographically ordering rooms with this tag.
|
/// Value to use for lexicographically ordering rooms with this tag.
|
||||||
#[serde(skip_serializing_if="Option::is_none")]
|
#[serde(skip_serializing_if="Option::is_none")]
|
||||||
pub order: Option<u64>,
|
pub order: Option<String>,
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user