From e8290d52b1e71dd8ab2a1d50e9a5d96a7f9a204d Mon Sep 17 00:00:00 2001 From: Daniel Gultsch Date: Sat, 29 Mar 2014 20:29:03 +0100 Subject: finally fixed #notificationgate --- src/eu/siacs/conversations/services/XmppConnectionService.java | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'src/eu/siacs/conversations/services') diff --git a/src/eu/siacs/conversations/services/XmppConnectionService.java b/src/eu/siacs/conversations/services/XmppConnectionService.java index 57a028e7..2a8ee4a7 100644 --- a/src/eu/siacs/conversations/services/XmppConnectionService.java +++ b/src/eu/siacs/conversations/services/XmppConnectionService.java @@ -85,6 +85,7 @@ public class XmppConnectionService extends Service { private List conversations = null; public OnConversationListChangedListener convChangedListener = null; + private int convChangedListenerCount = 0; private OnAccountListChangedListener accountChangedListener = null; private OnTLSExceptionReceived tlsException = null; @@ -1009,10 +1010,16 @@ public class XmppConnectionService extends Service { public void setOnConversationListChangedListener( OnConversationListChangedListener listener) { this.convChangedListener = listener; + this.convChangedListenerCount++; + Log.d(LOGTAG,"registered on conv changed in backend ("+convChangedListenerCount+")"); } public void removeOnConversationListChangedListener() { - this.convChangedListener = null; + this.convChangedListenerCount--; + Log.d(LOGTAG,"someone on conv changed listener removed listener ("+convChangedListenerCount+")"); + if (this.convChangedListenerCount==0) { + this.convChangedListener = null; + } } public void setOnAccountListChangedListener( -- cgit v1.2.3