MOBILE-2795 forum: Error when navigating to invalid discussion

main
Pau Ferrer Ocaña 2019-01-08 10:33:09 +01:00
parent 8ae36fc8f4
commit 9f2d0a40aa
1 changed files with 4 additions and 0 deletions

View File

@ -253,6 +253,10 @@ export class AddonModForumDiscussionPage implements OnDestroy {
const posts = offlineReplies.concat(onlinePosts);
this.discussion = this.forumProvider.extractStartingPost(posts);
if (!this.discussion) {
return Promise.reject('Invalid forum discussion');
}
// If sort type is nested, normal sorting is disabled and nested posts will be displayed.
if (this.sort == 'nested') {
// Sort first by creation date to make format tree work.