aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/de/pixart/messenger/ui/ConversationFragment.java
diff options
context:
space:
mode:
authorChristian Schneppe <christian@pix-art.de>2017-03-09 20:01:20 +0100
committerChristian Schneppe <christian@pix-art.de>2017-03-09 20:01:20 +0100
commit5b41c0da43d7c2f18fd96aa81cd70ffe8f5970f6 (patch)
tree1dc6659b8bfd15416b2b88958e1f588c51ffc4f4 /src/main/java/de/pixart/messenger/ui/ConversationFragment.java
parentcc7c118cc5c43aa7a3ebf49198b540e519fee0d6 (diff)
closing the corresponding conversations after blocking a contact
Diffstat (limited to '')
-rw-r--r--src/main/java/de/pixart/messenger/ui/ConversationFragment.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/de/pixart/messenger/ui/ConversationFragment.java b/src/main/java/de/pixart/messenger/ui/ConversationFragment.java
index 8e8fb5e46..b985a2c35 100644
--- a/src/main/java/de/pixart/messenger/ui/ConversationFragment.java
+++ b/src/main/java/de/pixart/messenger/ui/ConversationFragment.java
@@ -981,7 +981,7 @@ public class ConversationFragment extends Fragment implements EditMessage.Keyboa
}
});
if (conversation.isDomainBlocked()) {
- BlockContactDialog.show(activity, activity.xmppConnectionService, conversation);
+ BlockContactDialog.show(activity, conversation);
} else {
activity.unblockConversation(conversation);
}