diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2012-04-13 14:06:47 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2012-04-13 14:06:47 +0200 |
commit | ad59e49be04de7e2e6adda62eb39613c40c3a1be (patch) | |
tree | abb91da23a46cabdd45ee3e4e34779469fa2d386 /client | |
parent | f31d618b49759007a9435c00301bbbdfd668dd6d (diff) |
Add http body on errors.
Diffstat (limited to 'client')
-rw-r--r-- | client/praxisd.cc | 2 |
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)); } |