Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix duplications in search #21701

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open

Fix duplications in search #21701

wants to merge 3 commits into from

Conversation

ivanPyrohivskyi
Copy link
Contributor

@@ -304,7 +304,7 @@ public boolean sameSearchResult(SearchResult r1, SearchResult r2) {
return MapUtils.getDistance(r1.location, r2.location) < similarityRadius;
}
} else if (r1.object != null && r2.object != null) {
return r1.object == r2.object;
return r1.object.equals(r2.object);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it's comparision for same object not for similar object, so this is incorrect and we don't support equals on all types

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Classes in this case creates at once in one storage MapPoiTypes: PoiType, PoiCategory, PoiFilter are same.
Other classes creates during searching process: PoiAdditionalCustomFilter, PoiUIFilter, TopIndexFilter can not be same.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants