Skip to content

Commit

Permalink
turning off caching for all windows http requests
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Williams committed Nov 12, 2012
1 parent f19950f commit f3c8890
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Win/btlauncherAPI.cpp
Expand Up @@ -346,7 +346,7 @@ void btlauncherAPI::checkForUpdate(const FB::JSObjectPtr& callback) {

//url.append( itoa(lpTime->wMilliseconds, buf, 10) );
FB::SimpleStreamHelper::AsyncGet(m_host, FB::URI::fromString(url),
boost::bind(&btlauncherAPI::gotCheckForUpdate, this, callback, _1, _2, _3, _4)
boost::bind(&btlauncherAPI::gotCheckForUpdate, this, callback, _1, _2, _3, _4), false
);
}

Expand Down Expand Up @@ -446,7 +446,7 @@ void btlauncherAPI::downloadProgram(const std::wstring& program, const FB::JSObj
//url = version.c_str();

FB::SimpleStreamHelper::AsyncGet(m_host, FB::URI::fromString(url),
boost::bind(&btlauncherAPI::gotDownloadProgram, this, callback, program, _1, _2, _3, _4)
boost::bind(&btlauncherAPI::gotDownloadProgram, this, callback, program, _1, _2, _3, _4), false
);
OutputDebugString(_T("downloadProgram EXIT"));
}
Expand Down

0 comments on commit f3c8890

Please sign in to comment.