forked from organicmaps/organicmaps
review fixes
This commit is contained in:
parent
ab79980e3d
commit
c6a0076eed
2 changed files with 5 additions and 5 deletions
|
@ -143,12 +143,12 @@ void FindAllDiffsInDirectory(string const & dir, vector<LocalCountryFile> & diff
|
|||
{
|
||||
Platform & platform = GetPlatform();
|
||||
|
||||
Platform::TFilesWithType fwts;
|
||||
platform.GetFilesByType(dir, Platform::FILE_TYPE_REGULAR, fwts);
|
||||
Platform::TFilesWithType files;
|
||||
platform.GetFilesByType(dir, Platform::FILE_TYPE_REGULAR, files);
|
||||
|
||||
for (auto const & fwt : fwts)
|
||||
for (auto const & fileWithType : files)
|
||||
{
|
||||
string name = fwt.first;
|
||||
string name = fileWithType.first;
|
||||
|
||||
auto const isDiffReady =
|
||||
strings::EndsWith(name, strings::to_string(DIFF_FILE_EXTENSION) + READY_FILE_EXTENSION);
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue