mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-26 00:15:19 +02:00
fix appending of QString value to valueList
This commit is contained in:
parent
2294b3a2cd
commit
ac780df8a6
1 changed files with 1 additions and 1 deletions
|
@ -164,7 +164,7 @@ void DataServer::readPendingDatagrams() {
|
||||||
|
|
||||||
if (reply->len) {
|
if (reply->len) {
|
||||||
// copy the value that redis returned
|
// copy the value that redis returned
|
||||||
valueList << reply->str;
|
valueList << QString(reply->str);
|
||||||
} else {
|
} else {
|
||||||
// didn't find a value - insert a space
|
// didn't find a value - insert a space
|
||||||
valueList << QChar(' ');
|
valueList << QChar(' ');
|
||||||
|
|
Loading…
Reference in a new issue