mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 12:02:05 +01:00
Corrected bug in writing properties.
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@1787 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
parent
719f53dfb5
commit
443e8e9a7a
1 changed files with 1 additions and 1 deletions
|
@ -334,7 +334,7 @@ public abstract class Packet {
|
||||||
out.writeObject(value);
|
out.writeObject(value);
|
||||||
String encodedVal = StringUtils.encodeBase64(byteStream.toByteArray());
|
String encodedVal = StringUtils.encodeBase64(byteStream.toByteArray());
|
||||||
buf.append("java-object\">");
|
buf.append("java-object\">");
|
||||||
buf.append(encodedVal).append("</value");
|
buf.append(encodedVal).append("</value>");
|
||||||
}
|
}
|
||||||
catch (Exception e) {
|
catch (Exception e) {
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue