Showing
1 changed file
with
2 additions
and
2 deletions
@@ -416,10 +416,10 @@ public class UnionServiceImpl implements IUnionService,ApplicationEventPublisher | @@ -416,10 +416,10 @@ public class UnionServiceImpl implements IUnionService,ApplicationEventPublisher | ||
416 | app_key = "yohomars_ios"; | 416 | app_key = "yohomars_ios"; |
417 | } | 417 | } |
418 | List<AppActivateIdfaList> _90DayIdfaList = appActivateIdfaListDAO.selectByUdidAndDate(new AppActivateIdfaList(Long.valueOf(yesterday), request.getUdid(), app_key)); | 418 | List<AppActivateIdfaList> _90DayIdfaList = appActivateIdfaListDAO.selectByUdidAndDate(new AppActivateIdfaList(Long.valueOf(yesterday), request.getUdid(), app_key)); |
419 | - activeUnion.info("check ios active info in 90 days. udid is {} and app_key is {},yesterday is {} and result is {}", request.getUdid(), app_key, yesterday, (null == _90DayIdfaList)? "null": _90DayIdfaList.get(0)); | 419 | + activeUnion.info("check ios active info in 90 days. udid is {} and app_key is {},yesterday is {} and result is {}", request.getUdid(), app_key, yesterday, (_90DayIdfaList.isEmpty())? "null": _90DayIdfaList.get(0)); |
420 | 420 | ||
421 | List<AppActivateIdfaList> _15DayIdfaList = appActivateIdfaListDAO.select15DaysByIdfaAndDate(new AppActivateIdfaList(Long.valueOf(yesterday), request.getIdfa(), app_key, null)); | 421 | List<AppActivateIdfaList> _15DayIdfaList = appActivateIdfaListDAO.select15DaysByIdfaAndDate(new AppActivateIdfaList(Long.valueOf(yesterday), request.getIdfa(), app_key, null)); |
422 | - activeUnion.info("check ios active info in 15 days. udid is {} and app_key is {},yesterday is {} and result is {}", request.getUdid(), app_key, yesterday, (null == _15DayIdfaList)? "null": _15DayIdfaList.get(0)); | 422 | + activeUnion.info("check ios active info in 15 days. udid is {} and app_key is {},yesterday is {} and result is {}", request.getUdid(), app_key, yesterday, (_90DayIdfaList.isEmpty())? "null": _15DayIdfaList.get(0)); |
423 | 423 | ||
424 | //判断90天内是否在大数据有记录 | 424 | //判断90天内是否在大数据有记录 |
425 | if (CollectionUtils.isNotEmpty(_90DayIdfaList)) { | 425 | if (CollectionUtils.isNotEmpty(_90DayIdfaList)) { |
-
Please register or login to post a comment