Commit 6cb2a679 authored by Daniel Henninger's avatar Daniel Henninger Committed by dhenninger

Updated joscar and swapped some things around for AIM/ICQ away support. Still...

Updated joscar and swapped some things around for AIM/ICQ away support.  Still not fixed though.  (weird)

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk/src/plugins/gateway@6100 b35dd754-fafc-0310-a699-88a17e54d16e
parent ae6978ab
No preview for this file type
No preview for this file type
......@@ -3,9 +3,9 @@ Name | Version
cindy.jar | 2.4.4
irclib.jar | 1.10
jml.jar | svn-20061109
joscar-client.jar | svn-20061103
joscar-client.jar | svn-20061113
joscar-common.jar | svn-20061026
joscar-protocol.jar | svn-20061103
joscar-protocol.jar | svn-20061113
picocontainer.jar | 1.2.0
ymsg_network.jar | 0.61 (patched)
ymsg_support.jar | 0.61 (patched)
......@@ -472,7 +472,7 @@ public class OSCARSession extends TransportSession {
if (verboseStatus != null) {
awayMsg = verboseStatus;
}
request(new SetInfoCmd(new InfoData(awayMsg, null, MY_CAPS, null)));
request(new SetInfoCmd(new InfoData(null, awayMsg, MY_CAPS, null)));
Presence p = new Presence();
p.setShow(Presence.Show.away);
p.setTo(getJID());
......@@ -480,7 +480,7 @@ public class OSCARSession extends TransportSession {
getTransport().sendPacket(p);
}
else {
request(new SetInfoCmd(new InfoData(InfoData.NOT_AWAY, null, MY_CAPS, null)));
request(new SetInfoCmd(new InfoData(null, InfoData.NOT_AWAY, MY_CAPS, null)));
Presence p = new Presence();
p.setTo(getJID());
p.setFrom(getTransport().getJID());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment