🐛 Fix counting reactions in batch

This commit is contained in:
LittleSheep 2024-10-13 19:48:19 +08:00
parent db85cebe06
commit d6b6f2e399

View File

@ -49,7 +49,11 @@ func BatchListPostReactions(tx *gorm.DB, indexField string) (map[uint]map[string
if _, ok := reactInfo[info.ID]; !ok { if _, ok := reactInfo[info.ID]; !ok {
reactInfo[info.ID] = make(map[string]int64) reactInfo[info.ID] = make(map[string]int64)
} }
reactInfo[info.ID][info.Symbol] = info.Count if _, exists := reactInfo[info.ID][info.Symbol]; exists {
reactInfo[info.ID][info.Symbol] += info.Count
} else {
reactInfo[info.ID][info.Symbol] = info.Count
}
} }
return reactInfo, nil return reactInfo, nil