fix appending of QString value to valueList

This commit is contained in:
Stephen Birarda 2014-01-30 12:44:43 -08:00
parent 2294b3a2cd
commit ac780df8a6

View file

@ -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(' ');