mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-23 04:22:05 +01:00
Fix Presence Bug
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@7430 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
parent
b2a7d0d9a6
commit
5393774a1c
1 changed files with 15 additions and 13 deletions
|
@ -267,6 +267,7 @@ public class JingleManager implements JingleSessionListener {
|
||||||
}
|
}
|
||||||
|
|
||||||
public void presenceChanged(Presence presence) {
|
public void presenceChanged(Presence presence) {
|
||||||
|
if (!presence.isAvailable()) {
|
||||||
String xmppAddress = presence.getFrom();
|
String xmppAddress = presence.getFrom();
|
||||||
JingleSession aux = null;
|
JingleSession aux = null;
|
||||||
for (JingleSession jingleSession : jingleSessions) {
|
for (JingleSession jingleSession : jingleSessions) {
|
||||||
|
@ -283,6 +284,7 @@ public class JingleManager implements JingleSessionListener {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue