diff --git a/client/src/app/core/core-services/autoupdate.service.ts b/client/src/app/core/core-services/autoupdate.service.ts index 68d5728fd..f47c7e003 100644 --- a/client/src/app/core/core-services/autoupdate.service.ts +++ b/client/src/app/core/core-services/autoupdate.service.ts @@ -142,8 +142,9 @@ export class AutoupdateService { * The server should return an autoupdate with all new data. */ public requestChanges(): void { - console.log('requesting changed objects with DS max change id', this.DS.maxChangeId + 1); - this.websocketService.send('getElements', { change_id: this.DS.maxChangeId + 1 }); + const changeId = this.DS.maxChangeId === 0 ? 0 : this.DS.maxChangeId + 1; + console.log(`requesting changed objects with DS max change id ${changeId}`); + this.websocketService.send('getElements', { change_id: changeId }); } /**