diff --git a/client/src/app/site/pages/meetings/modules/list-of-speakers-content/components/speaking-times/speaking-times.component.ts b/client/src/app/site/pages/meetings/modules/list-of-speakers-content/components/speaking-times/speaking-times.component.ts index c0e4d2a6eb..ca7f6123a9 100644 --- a/client/src/app/site/pages/meetings/modules/list-of-speakers-content/components/speaking-times/speaking-times.component.ts +++ b/client/src/app/site/pages/meetings/modules/list-of-speakers-content/components/speaking-times/speaking-times.component.ts @@ -83,7 +83,9 @@ export class SpeakingTimesComponent implements OnDestroy { ) ) .subscribe(speaker => { - this.updateSpeakingTime(speaker.structure_level_list_of_speakers); + if (speaker) { + this.updateSpeakingTime(speaker.structure_level_list_of_speakers); + } }) ); }