diff --git a/src/qt/ipc.cpp b/src/qt/ipc.cpp index ae6b061d..a48cc8f8 100644 --- a/src/qt/ipc.cpp +++ b/src/qt/ipc.cpp @@ -76,7 +76,7 @@ bool IPC::saveCommand(QString cmdString){ QLocalSocket ls; QByteArray buffer; - buffer = buffer.append(cmdString); + buffer = buffer.append(cmdString.toUtf8()); QString socketFilePath = this->socketFile().filePath(); ls.connectToServer(socketFilePath, QIODevice::WriteOnly);