Commit 8a6ea690 authored by hujiebin's avatar hujiebin

加入的时间比上次计算时间小

parent 3c46a11c
...@@ -233,7 +233,7 @@ func IncrGroupPowerStarOnMic(model *domain.Model, groupPowerId, userId mysql.ID, ...@@ -233,7 +233,7 @@ func IncrGroupPowerStarOnMic(model *domain.Model, groupPowerId, userId mysql.ID,
if err != nil && err != gorm.ErrRecordNotFound { if err != nil && err != gorm.ErrRecordNotFound {
return err return err
} }
if star != nil && joinMicTimestamp == star.LastCalTs { if star != nil && joinMicTimestamp < star.LastCalTs { // 加入的时间比上次计算时间小
curTs = star.LastCalTs curTs = star.LastCalTs
} }
score := nowTs - curTs score := nowTs - curTs
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment