1
All checks were successful
ci/woodpecker/push/my-first-workflow Pipeline was successful

This commit is contained in:
昔念
2026-02-08 03:05:27 +08:00
parent 2b25ae6b35
commit 8ae7009811

View File

@@ -31,7 +31,7 @@ func (l *MAIN_LOGIN_IN) CheakSession() (bool, uint32) {
return false, 0
}
crc32Table := crc32.MakeTable(crc32.IEEE)
crcValue := crc32.Checksum([]byte(t1), crc32Table)
crcValue := crc32.Checksum([]byte(l.Sid), crc32Table)
cool.CacheManager.Remove(context.Background(), fmt.Sprintf("session:%d", l.Head.UserID))
//glog.Debug(context.Background(), "后端获取", t1, err)
return true, crcValue