summaryrefslogtreecommitdiffstats
path: root/store/sql_reaction_store.go
diff options
context:
space:
mode:
Diffstat (limited to 'store/sql_reaction_store.go')
-rw-r--r--store/sql_reaction_store.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/store/sql_reaction_store.go b/store/sql_reaction_store.go
index 1b927c106..87845421e 100644
--- a/store/sql_reaction_store.go
+++ b/store/sql_reaction_store.go
@@ -20,10 +20,10 @@ const (
var reactionCache *utils.Cache = utils.NewLru(REACTION_CACHE_SIZE)
type SqlReactionStore struct {
- *SqlStore
+ SqlStore
}
-func NewSqlReactionStore(sqlStore *SqlStore) ReactionStore {
+func NewSqlReactionStore(sqlStore SqlStore) ReactionStore {
s := &SqlReactionStore{sqlStore}
for _, db := range sqlStore.GetAllConns() {