forked from organicmaps/organicmaps
[editor] Create new node anyway even if it matched an empty node (part of way).
This commit is contained in:
parent
6fcb1e5510
commit
3977103919
1 changed files with 5 additions and 0 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Reference in a new issue