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:
authorIlya Grechuhin <i.grechuhin@gmail.com>2016-04-20 16:48:13 +0300
committerIlya Grechuhin <i.grechuhin@gmail.com>2016-04-20 17:36:33 +0300
commitc294c3c2122f01cc1189cc6dc22b463d33bd5481 (patch)
tree91c897f541906f582a76bd3928f6f929a6ae10c0 /storage/storage.cpp
parent81edaa14e2e7145f12241388b327194dbcb944e5 (diff)
[downloader] Fix behavior for absent description
Diffstat (limited to 'storage/storage.cpp')
-rw-r--r--storage/storage.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/storage.cpp b/storage/storage.cpp
index 9898b64c74..511a59e5a8 100644
--- a/storage/storage.cpp
+++ b/storage/storage.cpp
@@ -1332,7 +1332,7 @@ void Storage::GetNodeAttrs(TCountryId const & countryId, NodeAttrs & nodeAttrs)
nodeAttrs.m_status = statusAndErr.status;
nodeAttrs.m_error = statusAndErr.error;
nodeAttrs.m_nodeLocalName = m_countryNameGetter(countryId);
- nodeAttrs.m_nodeLocalDescription = m_countryNameGetter(countryId + LOCALIZATION_DESCRIPTION_SUFFIX);
+ nodeAttrs.m_nodeLocalDescription = m_countryNameGetter.Get(countryId + LOCALIZATION_DESCRIPTION_SUFFIX);
// Progress.
if (nodeAttrs.m_status == NodeStatus::OnDisk)