Skip to content

Commit

Permalink
capturing status code restrict to page request
Browse files Browse the repository at this point in the history
  • Loading branch information
os0x committed Aug 23, 2011
1 parent 88b70e3 commit 41c842e
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions src/WebPage.cpp
Expand Up @@ -168,16 +168,18 @@ QString WebPage::getLastAttachedFileName() {
}

void WebPage::replyFinished(QNetworkReply *reply) {
QStringList headers;
lastStatus = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
QList<QByteArray> list = reply->rawHeaderList();
if (reply->url() == this->mainFrame()->url()) {
QStringList headers;
lastStatus = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
QList<QByteArray> list = reply->rawHeaderList();

int length = list.size();
for(int i = 0; i < length; i++) {
headers << list.at(i)+": "+reply->rawHeader(list.at(i));
}
int length = list.size();
for(int i = 0; i < length; i++) {
headers << list.at(i)+": "+reply->rawHeader(list.at(i));
}

m_pageHeaders = headers.join("\n");
m_pageHeaders = headers.join("\n");
}
}

int WebPage::getLastStatus() {
Expand Down

0 comments on commit 41c842e

Please sign in to comment.