Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Pimenov <m@maps.me>2020-03-13 16:44:51 +0300
committerArsentiy Milchakov <milcars@mapswithme.com>2020-03-13 17:02:28 +0300
commit30b83f2f3c64a0b06af27285afeb94673bf3dafc (patch)
treeb86c5aa60663e63de1cbe283482ab2d6aa1d6045 /local_ads
parentd877f0990b0d33998b6c530dcf4f9768d0847fb3 (diff)
[local_ads] Fixed the statistics event.
Diffstat (limited to 'local_ads')
-rw-r--r--local_ads/statistics.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/local_ads/statistics.cpp b/local_ads/statistics.cpp
index 84c5c4eedb..32e6c625c8 100644
--- a/local_ads/statistics.cpp
+++ b/local_ads/statistics.cpp
@@ -493,7 +493,8 @@ void Statistics::ExtractMetadata(std::string const & fileName)
ReadMetadata(src, countryId, mwmVersion, baseTimestamp);
}
- auto const expectedFileName = countryId + "_" + strings::to_string(mwmVersion) + kStatisticsExt;
+ auto const expectedFileName =
+ GetPath(countryId + "_" + strings::to_string(mwmVersion) + kStatisticsExt);
if (fileName != expectedFileName)
{