This commit is contained in:
wangchuxiao
2022-03-29 15:50:20 +08:00
parent 7eeb67be28
commit 416f87f4bb
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -568,7 +568,7 @@ func (d *DataBases) GetTagSendLogs(userID string, showNumber, pageNumber int32)
}
func generateTagID(tagName, userID string) string {
return utils.Md5(tagName + userID + strconv.Itoa(rand.Int()))
return utils.Md5(tagName + userID + strconv.Itoa(rand.Int()) + time.Now().String())
}
func getCurrentTimestampByMill() int64 {