From 3b09429b440b94125b29d130f3d4afca6757e0f0 Mon Sep 17 00:00:00 2001 From: Joshua Napoli Date: Tue, 3 Apr 2012 21:27:34 -0400 Subject: [PATCH] Page load failure should not cause the next command to fail. --- src/Connection.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Connection.cpp b/src/Connection.cpp index 066895e..bb9f219 100644 --- a/src/Connection.cpp +++ b/src/Connection.cpp @@ -53,6 +53,7 @@ void Connection::writePageLoadFailure() { } void Connection::finishCommand(Response *response) { + m_pageSuccess = true; m_runningCommand->deleteLater(); writeResponse(response); }