notify on incomming received carbon messages
This commit is contained in:
parent
b9243033df
commit
34bd79ac04
|
@ -136,10 +136,12 @@ public class XmppConnectionService extends Service {
|
||||||
|| (packet.hasChild("sent"))) {
|
|| (packet.hasChild("sent"))) {
|
||||||
message = MessageParser.parseCarbonMessage(packet, account,
|
message = MessageParser.parseCarbonMessage(packet, account,
|
||||||
service);
|
service);
|
||||||
if (message != null) {
|
if ((message != null)&&(message.getStatus() == Message.STATUS_SEND)) {
|
||||||
message.getConversation().markRead();
|
message.getConversation().markRead();
|
||||||
|
notify = false;
|
||||||
|
} else {
|
||||||
|
notify = true;
|
||||||
}
|
}
|
||||||
notify = false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
} else if (packet.getType() == MessagePacket.TYPE_GROUPCHAT) {
|
} else if (packet.getType() == MessagePacket.TYPE_GROUPCHAT) {
|
||||||
|
|
|
@ -191,8 +191,14 @@ public class UIHelper {
|
||||||
|
|
||||||
List<Conversation> unread = new ArrayList<Conversation>();
|
List<Conversation> unread = new ArrayList<Conversation>();
|
||||||
for (Conversation conversation : conversations) {
|
for (Conversation conversation : conversations) {
|
||||||
if ((!conversation.isRead())&&((wasHighlighted(conversation)||(alwaysNotify)))) {
|
if (conversation.getMode() == Conversation.MODE_MULTI) {
|
||||||
unread.add(conversation);
|
if ((!conversation.isRead())&&((wasHighlighted(conversation)||(alwaysNotify)))) {
|
||||||
|
unread.add(conversation);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (!conversation.isRead()) {
|
||||||
|
unread.add(conversation);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
String ringtone = preferences.getString("notification_ringtone", null);
|
String ringtone = preferences.getString("notification_ringtone", null);
|
||||||
|
|
Loading…
Reference in New Issue