Skip to content

Commit

Permalink
[TIDESK-696] this resolves onsendstream events not being triggered.
Browse files Browse the repository at this point in the history
  • Loading branch information
Alan DuBoff committed Nov 17, 2011
1 parent 2dc2533 commit b3fbbfe
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion kroll
Submodule kroll updated from a783b7 to a98eec
7 changes: 4 additions & 3 deletions modules/ti.Network/HTTPClient.cpp
Expand Up @@ -733,9 +733,10 @@ int CurlProgressCallback(HTTPClient* client, double dltotal, double dlnow, doubl
if (client->IsAborted())
return CURLE_ABORTED_BY_CALLBACK;
else
return 0;

client->RequestDataSent((size_t)ulnow, (size_t)ultotal);
{
client->RequestDataSent((size_t)ulnow, (size_t)ultotal);
return CURLE_OK;
}
}

void HTTPClient::SetupCurlMethodType()
Expand Down
2 changes: 1 addition & 1 deletion sdk/__init__.py
@@ -1,2 +1,2 @@
def get_titanium_version():
return '1.2.0'
return '1.2.0.RC6-onsendstream-test'

0 comments on commit b3fbbfe

Please sign in to comment.