Merge pull request #12 from njulk/main

Modify bug for getting lastest seq
This commit is contained in:
skiffer-git
2021-10-21 17:11:37 +08:00
committed by GitHub
+1 -1
View File
@@ -66,7 +66,7 @@ func (d *DataBases) SetLastGetSeq(uid string) (err error) {
//获取用户上一次主动拉取Seq的值
func (d *DataBases) GetLastGetSeq(uid string) (int64, error) {
key := userIncrSeq + uid
key := lastGetSeq + uid
return redis.Int64(d.Exec("GET", key))
}