diff --git a/apps/meteor/app/ui-cached-collection/client/models/CachedCollection.ts b/apps/meteor/app/ui-cached-collection/client/models/CachedCollection.ts index edcb97df85ad..74521d562de4 100644 --- a/apps/meteor/app/ui-cached-collection/client/models/CachedCollection.ts +++ b/apps/meteor/app/ui-cached-collection/client/models/CachedCollection.ts @@ -269,11 +269,11 @@ export class CachedCollection extends Emitter<{ changed const action = 'changed'; const newRecord = this.handleSync(record, action); - if (!hasId(newRecord) || !hasUpdatedAt(newRecord)) { + if (!hasId(newRecord)) { continue; } - const actionTime = newRecord._updatedAt; + const actionTime = hasUpdatedAt(newRecord) ? newRecord._updatedAt : startTime; changes.push({ action: () => { const { _id } = newRecord;