summaryrefslogtreecommitdiffstats
path: root/store/sql_status_store.go
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2016-09-02 12:50:15 -0400
committerGitHub <noreply@github.com>2016-09-02 12:50:15 -0400
commitf32eb525f3fa0828a23f589d765c267e3b2aea86 (patch)
treed4b76aecf89143029af080b3e1b4d87398e0adc5 /store/sql_status_store.go
parenteb0111f6bbe2b0bf160a674dfe1b4d089f905cb9 (diff)
downloadchat-f32eb525f3fa0828a23f589d765c267e3b2aea86.tar.gz
chat-f32eb525f3fa0828a23f589d765c267e3b2aea86.tar.bz2
chat-f32eb525f3fa0828a23f589d765c267e3b2aea86.zip
Do not send push notifications for channels being actively viewed (#3931)
Diffstat (limited to 'store/sql_status_store.go')
-rw-r--r--store/sql_status_store.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/store/sql_status_store.go b/store/sql_status_store.go
index 9b82484f4..9f7441796 100644
--- a/store/sql_status_store.go
+++ b/store/sql_status_store.go
@@ -24,6 +24,7 @@ func NewSqlStatusStore(sqlStore *SqlStore) StatusStore {
table := db.AddTableWithName(model.Status{}, "Status").SetKeys(false, "UserId")
table.ColMap("UserId").SetMaxSize(26)
table.ColMap("Status").SetMaxSize(32)
+ table.ColMap("ActiveChannel").SetMaxSize(26)
}
return s