Merge pull request from dpalou/MOBILE-2513

MOBILE-2513 participants: Fix infinite loading
This commit is contained in:
Juan Leyva 2018-08-21 16:56:03 +01:00 committed by GitHub
commit bcd42f24e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -54,6 +54,9 @@ export class CoreUserParticipantsComponent implements OnInit {
});
}).finally(() => {
this.participantsLoaded = true;
// Call resize to make infinite loading work, in some cases the content dimensions aren't read.
this.content && this.content.resize();
});
}