|
|
@@ -180,12 +180,12 @@ const getPassableEvents = (relations, eventsLogsMap) => {
|
|
|
const oddsMap = {};
|
|
|
|
|
|
Object.keys(rel).forEach(platform => {
|
|
|
- const { leagueName, teamHomeName, teamAwayName, timestamp, stage, score, evtime, events, sptime, special } = rel[platform];
|
|
|
+ const { leagueName, teamHomeName, teamAwayName, timestamp, stage, score, retime, evtime, events, sptime, special } = rel[platform];
|
|
|
if (!events && !special) {
|
|
|
return;
|
|
|
}
|
|
|
if (platform == 'ps') {
|
|
|
- eventsMap.info = { leagueName, teamHomeName, teamAwayName, id, timestamp, stage, score };
|
|
|
+ eventsMap.info = { leagueName, teamHomeName, teamAwayName, id, timestamp, stage, score, retime };
|
|
|
}
|
|
|
const { odds, evExpire, spExpire, removeCount } = extractOdds({ evtime, events, sptime, special });
|
|
|
|