<No Comment Entered>

cusax-fix
Damian Minkov 20 years ago
parent c64a58ee12
commit df65feb914

@ -433,6 +433,9 @@
failonerror="true"
classpathref="project.class.path">
<!-- Sets the charset for the messages -->
<!--sysproperty key="icq.custom.message.charset" value="windows-1252"/-->
<!-- Tell oscar to run sip-communicator-->
<sysproperty key="oscar.config.properties"
value="file:./lib/oscar.client.run.properties"/>
@ -801,7 +804,7 @@ javax.swing.event, javax.swing.border"/>
prefix="net/java/sip/communicator/slick/contactlist"/>
</jar>
</target>
<!-- BUNDLE-PLUGIN-ICQACCREGWIZZ -->
<target name="bundle-plugin-icqaccregwizz">
<!-- Creates a bundle for the pligon Icq Account Registration Wizard."-->

Binary file not shown.

@ -26,6 +26,7 @@ handlers= java.util.logging.ConsoleHandler
# can be overriden by a facility specific level
# Note that the ConsoleHandler also has a separate level
# setting to limit messages printed to the console.
#.level= FINEST
.level= INFO
############################################################
@ -52,10 +53,12 @@ java.util.logging.ConsoleHandler.formatter = net.java.sip.communicator.util.ScLo
# We don't want trace logs from joscar and joustsim
net.kano.level = INFO
# But we want everything coming from the sip-comm
net.java.sip.communicator.impl.contactlist.level = FINEST
net.java.sip.communicator.level = FINEST
net.java.sip.communicator.impl.contactlist.level = ALL
net.java.sip.communicator.slick.level = FINEST
# For example, set the com.xyz.foo logger to only log SEVERE
# messages:
com.xyz.foo.level = SEVERE

Binary file not shown.

@ -95,7 +95,12 @@ public IcbmChannelFourCommand(SnacPacket packet)
int textlen = LEBinaryTools.getUShort(messageData, 6) - 1;
ByteBlock field = messageData.subBlock(8, textlen);
reason = OscarTools.getString(field, "US-ASCII");
// 0 is the charset code for ASCII in joastim
// the encoding params will check for special system set encodings
ImEncodingParams encoding = new ImEncodingParams(0);
reason = ImEncodedString.readImEncodedString(encoding, field);
}
protected void writeChannelData(OutputStream out) throws IOException

Loading…
Cancel
Save