forked from organicmaps/organicmaps
[catalog] Default headers are added into downloading guide request.
This commit is contained in:
parent
3254f9d6a6
commit
0ef024f2d0
1 changed files with 2 additions and 1 deletions
|
@ -270,7 +270,8 @@ void BookmarkCatalog::Download(std::string const & id, std::string const & acces
|
|||
static uint32_t counter = 0;
|
||||
auto const path = base::JoinPath(GetPlatform().TmpDir(), "file" + strings::to_string(++counter));
|
||||
|
||||
platform::RemoteFile remoteFile(BuildCatalogDownloadUrl(id), accessToken);
|
||||
platform::RemoteFile remoteFile(BuildCatalogDownloadUrl(id), accessToken,
|
||||
web_api::GetDefaultCatalogHeaders());
|
||||
remoteFile.DownloadAsync(path, [startHandler = std::move(startHandler)](std::string const &)
|
||||
{
|
||||
if (startHandler)
|
||||
|
|
Loading…
Add table
Reference in a new issue