forked from organicmaps/organicmaps
[editor] Safety check to avoid unnecessary upload call.
This commit is contained in:
parent
f60b3fe1ae
commit
78981ee7ee
1 changed files with 6 additions and 0 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Reference in a new issue