shouldn't return an error in whatever case this is (reverted from commit ec99fcdf5d)

This commit is contained in:
jacob1 2015-12-02 11:25:24 -05:00
parent ec99fcdf5d
commit 6930d830bf

View File

@ -715,9 +715,7 @@ RequestStatus Client::ParseServerReturn(char *result, int status, bool json)
json::String error = root["Error"];
lastError = std::string(error);
if (lastError == "")
{
return RequestOkay;
}
lastError = "Unspecified Error";
return RequestFailure;
}
}