aboutsummaryrefslogtreecommitdiffstats
path: root/src/eu/siacs/conversations/services
diff options
context:
space:
mode:
authorMichael <betheg@bitcloner.org>2014-09-20 15:49:25 +0200
committerMichael <betheg@bitcloner.org>2014-09-20 15:49:25 +0200
commita86a09ab5b81f39c4d56c37af65e630539e85ffe (patch)
tree621ce6fcb0086b967d5aa8ecf3de27bacb3dc967 /src/eu/siacs/conversations/services
parent295bfb7f1de98649d8a7dd5f77745e50bfc25f56 (diff)
indicates received messages with a tick.
Diffstat (limited to 'src/eu/siacs/conversations/services')
-rw-r--r--src/eu/siacs/conversations/services/XmppConnectionService.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/eu/siacs/conversations/services/XmppConnectionService.java b/src/eu/siacs/conversations/services/XmppConnectionService.java
index 0012713aa..5bc255529 100644
--- a/src/eu/siacs/conversations/services/XmppConnectionService.java
+++ b/src/eu/siacs/conversations/services/XmppConnectionService.java
@@ -1566,6 +1566,10 @@ public class XmppConnectionService extends Service {
return !getPreferences().getBoolean("dont_save_encrypted", false);
}
+ public boolean indicateReceived() {
+ return getPreferences().getBoolean("indicate_received", false);
+ }
+
public void notifyUi(Conversation conversation, boolean notify) {
if (mOnConversationUpdate != null) {
mOnConversationUpdate.onConversationUpdate();