summaryrefslogtreecommitdiffstats
path: root/model
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2015-09-17 09:21:56 -0700
committer=Corey Hulen <corey@hulen.com>2015-09-17 09:21:56 -0700
commit9b5198c69c01ff11b0977282b61cf2222ef2f2b1 (patch)
treea5179226ff013f082a6629dbf888454c53611383 /model
parent51c3445e694e68fdecd809f17fbaa64751e5931c (diff)
parent3edd8dbdf65e0b7be422a46328cb85482aa78f69 (diff)
downloadchat-9b5198c69c01ff11b0977282b61cf2222ef2f2b1.tar.gz
chat-9b5198c69c01ff11b0977282b61cf2222ef2f2b1.tar.bz2
chat-9b5198c69c01ff11b0977282b61cf2222ef2f2b1.zip
Merge branch 'master' into PLT-92
Diffstat (limited to 'model')
-rw-r--r--model/channel_count.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/model/channel_count.go b/model/channel_count.go
index d5daba14e..19d6ac150 100644
--- a/model/channel_count.go
+++ b/model/channel_count.go
@@ -20,7 +20,7 @@ type ChannelCounts struct {
func (o *ChannelCounts) Etag() string {
ids := []string{}
- for id, _ := range o.Counts {
+ for id := range o.Counts {
ids = append(ids, id)
}
sort.Strings(ids)