review fixes

This commit is contained in:
Arsentiy Milchakov 2017-08-22 16:04:21 +03:00 committed by Vladimir Byko-Ianko
parent ab79980e3d
commit c6a0076eed
2 changed files with 5 additions and 5 deletions

View file

@ -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);

View file

@ -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);