mirror of
https://github.com/Armored-Dragon/overte.git
synced 2025-03-11 16:13:16 +01: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) {
|
||||
// copy the value that redis returned
|
||||
valueList << reply->str;
|
||||
valueList << QString(reply->str);
|
||||
} else {
|
||||
// didn't find a value - insert a space
|
||||
valueList << QChar(' ');
|
||||
|
|
Loading…
Reference in a new issue