diff options
author | Daniel Gultsch <daniel@gultsch.de> | 2014-03-12 22:31:50 +0100 |
---|---|---|
committer | Daniel Gultsch <daniel@gultsch.de> | 2014-03-12 22:31:50 +0100 |
commit | eadebeb77cbc4f5b49d484b8a64058630385afe6 (patch) | |
tree | 5a5150b25d274b2e4bdce2b643792f69e7f4be38 /src/eu/siacs/conversations/utils | |
parent | c67238562ae2228efbe96225b23b2a297aea8f2f (diff) |
added server info and deal with thi 'connecting...' bug
Diffstat (limited to 'src/eu/siacs/conversations/utils')
-rw-r--r-- | src/eu/siacs/conversations/utils/MessageParser.java | 1 | ||||
-rw-r--r-- | src/eu/siacs/conversations/utils/UIHelper.java | 5 |
2 files changed, 0 insertions, 6 deletions
diff --git a/src/eu/siacs/conversations/utils/MessageParser.java b/src/eu/siacs/conversations/utils/MessageParser.java index 136edc82..290574e3 100644 --- a/src/eu/siacs/conversations/utils/MessageParser.java +++ b/src/eu/siacs/conversations/utils/MessageParser.java @@ -31,7 +31,6 @@ public class MessageParser { } public static Message parseOtrChat(MessagePacket packet, Account account, XmppConnectionService service) { - Log.d(LOGTAG,"otr message received: "+packet.toString()); String[] fromParts = packet.getFrom().split("/"); Conversation conversation = service.findOrCreateConversation(account, fromParts[0],false); String body = packet.getBody(); diff --git a/src/eu/siacs/conversations/utils/UIHelper.java b/src/eu/siacs/conversations/utils/UIHelper.java index 8880cde3..b0f79c3a 100644 --- a/src/eu/siacs/conversations/utils/UIHelper.java +++ b/src/eu/siacs/conversations/utils/UIHelper.java @@ -126,10 +126,6 @@ public class UIHelper { public static void updateNotification(Context context, List<Conversation> conversations, Conversation currentCon, boolean notify) { - - - Log.d("xmppService","called to update notifications"); - NotificationManager mNotificationManager = (NotificationManager) context .getSystemService(Context.NOTIFICATION_SERVICE); @@ -139,7 +135,6 @@ public class UIHelper { boolean alwaysNotify = preferences.getBoolean("notify_in_conversation_when_highlighted", false); if (!showNofifications) { - Log.d("xmppService","notification disabled in settings. not showing"); return; } |