[editor] Safety check to avoid unnecessary upload call.

This commit is contained in:
Alex Zolotarev 2016-01-26 13:23:20 +03:00 committed by Sergey Yershov
parent f60b3fe1ae
commit 78981ee7ee

View file

@ -627,6 +627,12 @@ bool Editor::HaveSomethingToUpload() const
void Editor::UploadChanges(string const & key, string const & secret, TChangesetTags tags,
TFinishUploadCallback callBack)
{
if (!HaveSomethingToUpload())
{
LOG(LDEBUG, ("There are no local edits to upload."));
return;
}
tags["created_by"] = "MAPS.ME " OMIM_OS_NAME;
// TODO(AlexZ): features access should be synchronized.