Skip to content

Commit 8b5b33e

Browse files
committed
MOBILE-2915 forum: Fix discussion sync
1 parent 5c4fcaf commit 8b5b33e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/addon/mod/forum/pages/discussion/discussion.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ export class AddonModForumDiscussionPage implements OnDestroy {
357357
protected syncDiscussion(showErrors: boolean): Promise<any> {
358358
const promises = [];
359359

360-
promises.push(this.forumSync.syncDiscussionReplies(this.forumId, this.discussionId).then((result) => {
360+
promises.push(this.forumSync.syncDiscussionReplies(this.discussionId).then((result) => {
361361
if (result.warnings && result.warnings.length) {
362362
this.domUtils.showErrorModal(result.warnings[0]);
363363
}

0 commit comments

Comments
 (0)