TagInfo's order field should be a string. Fixes #4.

This commit is contained in:
Jimmy Cuadra 2016-11-24 07:18:59 -08:00
parent ead4e9f294
commit 422afdc2f2

View File

@ -19,5 +19,5 @@ pub struct TagEventContent {
pub struct TagInfo {
/// Value to use for lexicographically ordering rooms with this tag.
#[serde(skip_serializing_if="Option::is_none")]
pub order: Option<u64>,
pub order: Option<String>,
}