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:
authorArsentiy Milchakov <milcars@mapswithme.com>2017-08-22 16:04:21 +0300
committerVladimir Byko-Ianko <v.bykoianko@corp.mail.ru>2017-09-13 16:25:29 +0300
commitc6a0076eede50d741527fd6ddf64510310cdf0c1 (patch)
tree3c091e3a5a77922c8f6c3898cc4cd4b516979704 /storage
parentab79980e3d5730afe430e5b64f7a11c14a513f0a (diff)
review fixes
Diffstat (limited to 'storage')
-rw-r--r--storage/diff_scheme/diff_manager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/diff_scheme/diff_manager.cpp b/storage/diff_scheme/diff_manager.cpp
index b5508ed2ed..4358cda4f9 100644
--- a/storage/diff_scheme/diff_manager.cpp
+++ b/storage/diff_scheme/diff_manager.cpp
@@ -92,7 +92,7 @@ void Manager::ApplyDiff(ApplyDiffParams && p, std::function<void(bool const resu
GetPlatform().GetMarketingService().SendMarketingEvent(
marketing::kDiffSchemeError,
{{"type", "patching"},
- {"error", !isFilePrepared ? "Cannot to prepare file" : "Cannot to apply diff"}});
+ {"error", isFilePrepared ? "Cannot apply diff" : "Cannot prepare file"}});
}
task(result);