mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-05-21 09:45:48 +08:00
修正分析计时
This commit is contained in:
@@ -116,10 +116,15 @@ namespace LogParse
|
||||
}
|
||||
}
|
||||
|
||||
//无论如何给个结束时间
|
||||
if (configGroupEntity != null && configGroupEntity.EndDate == null)
|
||||
|
||||
}
|
||||
|
||||
//无论如何给个结束时间
|
||||
if (configGroupEntity != null && configGroupEntity.EndDate == null)
|
||||
{
|
||||
if ( configGroupEntity.ConfigTaskList.Count>0)
|
||||
{
|
||||
ConfigTask ct = configGroupEntity.ConfigTaskList.FindLast(item => true);
|
||||
ConfigTask ct = configGroupEntity.ConfigTaskList[^1];
|
||||
if (ct != null)
|
||||
{
|
||||
configGroupEntity.EndDate = ct.EndDate;
|
||||
@@ -129,14 +134,9 @@ namespace LogParse
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
//if (configGroupEntity != null)
|
||||
//{
|
||||
// configGroupEntities.Add(configGroupEntity);
|
||||
//}
|
||||
|
||||
|
||||
return configGroupEntities;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user