|
|
@@ -589,7 +589,7 @@ export class WorkDayStatisticsService {
|
|
|
likesCount: stat?.likesCount ?? 0,
|
|
|
commentsCount: stat?.commentsCount ?? 0,
|
|
|
collectsCount: stat?.collectsCount ?? 0,
|
|
|
- updateTime: latestUpdate ? latestUpdate.toISOString() : undefined,
|
|
|
+ updateTime: latestUpdate ? this.formatUpdateTime(latestUpdate) : undefined,
|
|
|
};
|
|
|
});
|
|
|
|
|
|
@@ -883,7 +883,7 @@ export class WorkDayStatisticsService {
|
|
|
const accountYesterdayLikes = yesterdayUds?.likeCount ?? 0;
|
|
|
const accountYesterdayFansIncrease = yesterdayUds?.fansIncrease ?? 0;
|
|
|
|
|
|
- const updateTime = (yesterdayUds?.updatedAt ?? account.updatedAt).toISOString();
|
|
|
+ const updateTime = this.formatUpdateTime(yesterdayUds?.updatedAt ?? account.updatedAt ?? new Date());
|
|
|
|
|
|
accountList.push({
|
|
|
id: account.id,
|