Version 4.5.0
[nikiroo-utils.git] / src / be / nikiroo / utils / serial / server / ConnectAction.java
index 97243d567a2ed9f39dfcaddbf8deeaee51bac575..10435e299d70febcdeb83f2f10086c41d85339c3 100644 (file)
@@ -175,7 +175,8 @@ abstract class ConnectAction {
        protected Object sendObject(Object data) throws IOException,
                        NoSuchFieldException, NoSuchMethodException, ClassNotFoundException {
                synchronized (lock) {
-                       String rep = sendString(new Exporter().append(data).toString(true));
+                       String rep = sendString(new Exporter().append(data).toString(true,
+                                       true));
                        if (rep != null) {
                                return new Importer().read(rep).getValue();
                        }