fix: 广告累计时间不正确修复

This commit is contained in:
张松
2024-12-24 15:41:28 +08:00
parent 310f5b831c
commit 9129feb204

View File

@@ -52,7 +52,7 @@ public class RedisServiceImpl implements RedisService {
}else {
Long expire = redisUtils.getExpire(freeWatchKey);
if (expire == null) {
expire = Long.valueOf(second);
expire = -1L;
}else {
expire += Long.valueOf(second);
}