aboutsummaryrefslogtreecommitdiff
path: root/src/qt/ipc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/qt/ipc.cpp')
-rw-r--r--src/qt/ipc.cpp2
1 files changed, 1 insertions, 1 deletions
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);