Skip to content

Commit

Permalink
Merge pull request #413 from osmandapp/hotfix040624
Browse files Browse the repository at this point in the history
fix crash
  • Loading branch information
alisa911 committed Jun 4, 2024
2 parents 46e0c17 + 5d17417 commit dc61d88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion map/src/map/layers/SearchLayer.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ export default function SearchLayer() {
!areSetsEqual(filtersRef.current, ctx.searchSettings.selectedFilters) ||
!ctx.wikiPlaces
) {
filtersRef.current = ctx.searchSettings.selectedFilters;
filtersRef.current = ctx.searchSettings.selectedFilters ?? null;
removeLayers();
debouncer(
() => getData({ controller, ignore, settings, setLoadingContextMenu }),
Expand Down

0 comments on commit dc61d88

Please sign in to comment.