From 0ef024f2d0a449581f5ac7a07b46b793e31a5fab Mon Sep 17 00:00:00 2001 From: Arsentiy Milchakov Date: Thu, 26 Dec 2019 13:53:31 +0300 Subject: [PATCH] [catalog] Default headers are added into downloading guide request. --- map/bookmark_catalog.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/map/bookmark_catalog.cpp b/map/bookmark_catalog.cpp index c8776e9a53..cd6d5464d8 100644 --- a/map/bookmark_catalog.cpp +++ b/map/bookmark_catalog.cpp @@ -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)