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:
Matt Tucker 2003-01-16 01:00:40 +00:00 committed by mtucker
parent 719f53dfb5
commit 443e8e9a7a
1 changed files with 1 additions and 1 deletions

View File

@ -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) {