shouldn't return an error in whatever case this is

This commit is contained in:
jacob1 2015-12-01 01:15:30 -05:00
parent 5afb95dcf1
commit ec99fcdf5d

View File

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