调整仅仅 2001 计算倒量数据

This commit is contained in:
pengtao 2019-12-13 11:40:47 +08:00
parent d37b1bfe36
commit a7b9d59f51

View File

@ -506,9 +506,14 @@ class Report:
data.append(temp)
except Exception:
log.error(f"get active user failed,{temp['all']}", exc_info=True)
elif temp['all'] and self.project == 'mini_games':
try:
if temp['all'][0] > 5:
data.append(temp)
except Exception:
log.error(f"get active user failed,{temp['all']}", exc_info=True)
else:
if temp['all'][0] > 5:
data.append(temp)
log.error(f"someting was wrong with {temp}")
return data