aboutsummaryrefslogtreecommitdiff
path: root/matrix/rooms
diff options
context:
space:
mode:
authorTulir Asokan <tulir@maunium.net>2018-05-04 00:55:28 +0300
committerTulir Asokan <tulir@maunium.net>2018-05-04 00:55:30 +0300
commit122b2441c991a941193769569c532d8b0e198904 (patch)
treed4a42685edae72bde94b1e20142f90fd66168bec /matrix/rooms
parent93cbdc0ca88d46454b96043d8baf4b231e91474a (diff)
Add support for explicit ordering and limiting rooms shown under a tag
Fixes #41
Diffstat (limited to 'matrix/rooms')
-rw-r--r--matrix/rooms/room.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/matrix/rooms/room.go b/matrix/rooms/room.go
index 808eecb..40303be 100644
--- a/matrix/rooms/room.go
+++ b/matrix/rooms/room.go
@@ -39,8 +39,8 @@ const (
type RoomTag struct {
// The name of the tag.
Tag string
- // The order of the tag. Smaller values are ordered higher.
- Order float64
+ // The order of the tag.
+ Order string
}
// Room represents a single Matrix room.
@@ -118,7 +118,7 @@ func (room *Room) MarkRead() {
func (room *Room) Tags() []RoomTag {
if len(room.RawTags) == 0 {
- return []RoomTag{{"", 0.5}}
+ return []RoomTag{{"", "0.5"}}
}
return room.RawTags
}