From 338334b8c6ca4816daee9e1c1ab53ba61c0f520a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pau=20Ferrer=20Oca=C3=B1a?= Date: Thu, 28 Nov 2019 14:36:49 +0100 Subject: [PATCH] MOBILE-3205 forum: Reload discussion list after changes --- src/addon/mod/forum/components/index/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/addon/mod/forum/components/index/index.ts b/src/addon/mod/forum/components/index/index.ts index 8951cfdcd..5bb4e2f2d 100644 --- a/src/addon/mod/forum/components/index/index.ts +++ b/src/addon/mod/forum/components/index/index.ts @@ -127,6 +127,8 @@ export class AddonModForumIndexComponent extends CoreCourseModuleMainActivityCom if (typeof data.starred != 'undefined') { discussion.starred = data.starred; } + + this.showLoadingAndFetch(false); } }