diff --git a/common/src/services/sync.service.ts b/common/src/services/sync.service.ts index 177d76f5da..776ace7a74 100644 --- a/common/src/services/sync.service.ts +++ b/common/src/services/sync.service.ts @@ -362,7 +362,7 @@ export class SyncService implements SyncServiceAbstraction { private async syncSends(response: SendResponse[]) { const sends: { [id: string]: SendData } = {}; response.forEach((s) => { - sends[s.id] = new SendData(); + sends[s.id] = new SendData(s); }); return await this.sendService.replace(sends); }