summaryrefslogtreecommitdiffstats
path: root/store/sql_channel_store.go
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2015-09-29 14:17:16 -0700
committer=Corey Hulen <corey@hulen.com>2015-09-29 14:17:16 -0700
commit8fadea44debd00c1babd12bff9eb2dd0a5d99370 (patch)
tree029cf65137b2590308c2d745ef61d7458d3d7287 /store/sql_channel_store.go
parent942702ff1a6cc3763742ea9fec6ecc587d998411 (diff)
downloadchat-8fadea44debd00c1babd12bff9eb2dd0a5d99370.tar.gz
chat-8fadea44debd00c1babd12bff9eb2dd0a5d99370.tar.bz2
chat-8fadea44debd00c1babd12bff9eb2dd0a5d99370.zip
PLT-404 adding basic error checking to config file.
Diffstat (limited to 'store/sql_channel_store.go')
-rw-r--r--store/sql_channel_store.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/store/sql_channel_store.go b/store/sql_channel_store.go
index 877246fc3..cb686090e 100644
--- a/store/sql_channel_store.go
+++ b/store/sql_channel_store.go
@@ -583,7 +583,7 @@ func (s SqlChannelStore) UpdateLastViewedAt(channelId string, userId string) Sto
var query string
- if utils.Cfg.SqlSettings.DriverName == "postgres" {
+ if utils.Cfg.SqlSettings.DriverName == model.DATABASE_DRIVER_POSTGRES {
query = `UPDATE
ChannelMembers
SET
@@ -597,7 +597,7 @@ func (s SqlChannelStore) UpdateLastViewedAt(channelId string, userId string) Sto
Channels.Id = ChannelMembers.ChannelId
AND UserId = :UserId
AND ChannelId = :ChannelId`
- } else if utils.Cfg.SqlSettings.DriverName == "mysql" {
+ } else if utils.Cfg.SqlSettings.DriverName == model.DATABASE_DRIVER_MYSQL {
query = `UPDATE
ChannelMembers, Channels
SET