[editor] Create new node anyway even if it matched an empty node (part of way).

This commit is contained in:
Alex Zolotarev 2016-04-01 11:40:39 +03:00
parent 6fcb1e5510
commit 3977103919

View file

@ -621,6 +621,11 @@ void Editor::UploadChanges(string const & key, string const & secret, TChangeset
// Object was never created by anyone else - it's safe to create it.
changeset.Create(feature);
}
catch (ChangesetWrapper::EmptyFeatureException const &)
{
// There is another node nearby, but it should be safe to create a new one.
changeset.Create(feature);
}
catch (...)
{
// Pass network or other errors to outside exception handler.