summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2012-04-13 14:06:47 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2012-04-13 14:06:47 +0200
commitad59e49be04de7e2e6adda62eb39613c40c3a1be (patch)
treeabb91da23a46cabdd45ee3e4e34779469fa2d386
parentf31d618b49759007a9435c00301bbbdfd668dd6d (diff)
Add http body on errors.
-rw-r--r--client/praxisd.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/praxisd.cc b/client/praxisd.cc
index 161b471..2fbaddc 100644
--- a/client/praxisd.cc
+++ b/client/praxisd.cc
@@ -221,7 +221,7 @@ void Praxisd::replyFinished(QNetworkReply *reply)
break;
}
} else {
- emit networkError(reply->errorString());
+ emit networkError(reply->errorString() + " - " + reply->readAll());
}
replytypes.erase(replytypes.find(reply));
}