diff options
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)); } |