fix comment error messages not showing
This commit is contained in:
parent
462bd7bdf9
commit
a85526bfac
@ -1308,7 +1308,7 @@ RequestStatus Client::AddComment(int saveID, std::string comment)
|
||||
|
||||
if(status!=1)
|
||||
{
|
||||
lastError = ((json::Number)objDocument["Error"]).Value();
|
||||
lastError = ((json::String)objDocument["Error"]).Value();
|
||||
}
|
||||
|
||||
if(status!=1)
|
||||
@ -1480,7 +1480,10 @@ RequestStatus Client::UnpublishSave(int saveID)
|
||||
int status = ((json::Number)objDocument["Status"]).Value();
|
||||
|
||||
if(status!=1)
|
||||
{
|
||||
lastError = ((json::String)objDocument["Error"]).Value();
|
||||
goto failure;
|
||||
}
|
||||
}
|
||||
catch (json::Exception &e)
|
||||
{
|
||||
@ -1828,7 +1831,7 @@ Thumbnail * Client::GetThumbnail(int saveID, int saveDate)
|
||||
//Check active requests for any "forgotten" requests
|
||||
for(i = 0; i < IMGCONNS; i++)
|
||||
{
|
||||
//If the request is active, and we've recieved a response
|
||||
//If the request is active, and we've received a response
|
||||
if(activeThumbRequests[i] && http_async_req_status(activeThumbRequests[i]))
|
||||
{
|
||||
//If we haven't already, mark the request as completed
|
||||
|
Loading…
Reference in New Issue
Block a user