Skip to content

Commit 2bac058

Browse files
authored
Merge pull request #17044 from wordpress-mobile/fix/comment-content-lost-when-approved-on-notification
Disable comment notification Approve action
2 parents eea1df2 + dbe9478 commit 2bac058

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

WordPress/src/main/java/org/wordpress/android/push/GCMMessageHandler.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,10 @@ private void addActionsForCommentNotification(Context context, NotificationCompa
473473
// if the comment is lacking approval, offer moderation actions
474474
if (note.getCommentStatus() == CommentStatus.UNAPPROVED) {
475475
if (note.canModerate()) {
476-
addCommentApproveActionForCommentNotification(context, builder, noteId);
476+
// TODO
477+
// Enable comment approve action after fixing content lost after approval.
478+
// Issue: https://github.com/wordpress-mobile/WordPress-Android/issues/17026
479+
// addCommentApproveActionForCommentNotification(context, builder, noteId);
477480
}
478481
} else {
479482
// else offer REPLY / LIKE actions

0 commit comments

Comments
 (0)