Log download failures

This commit is contained in:
Daenyth 2014-06-23 23:44:13 -04:00
parent 632e7f487c
commit 0420f4f7af
2 changed files with 10 additions and 8 deletions

View file

@ -176,6 +176,10 @@ void PictureLoader::startNextPicDownload()
void PictureLoader::picDownloadFinished(QNetworkReply *reply)
{
QString picsPath = _picsPath;
if (reply->error()) {
qDebug() << "Download failed:" << reply->errorString();
}
const QByteArray &picData = reply->readAll();
QImage testImage;
if (testImage.loadFromData(picData)) {

View file

@ -53,10 +53,8 @@ public:
bool getStripped() const { return stripped; }
QString getSetName() const { return sortedSets[setIndex]->getShortName(); }
bool nextSet();
bool getHq() const { return hq; }
void setHq(bool _hq) { hq = _hq; }
};
class PictureLoader : public QObject {