Skip to content

Commit

Permalink
fix: problem with incorrect map placements on Maps tab, see #72 (merg…
Browse files Browse the repository at this point in the history
…e pull request #145 from codedipper/fix-incorrect-map-places)

fix: incorrect places in map search
  • Loading branch information
Ahwxorg committed Apr 17, 2024
2 parents 9f23ec5 + 0bc1d55 commit 1a26c53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/maps/openstreetmap.php
Expand Up @@ -23,7 +23,7 @@ public function parse_results($response) {
array_push($results, array(
"title" => $item["name"],
"description" => $item["display_name"],
"url" => "https://www.openstreetmap.org/node/" . $item["osm_id"],
"url" => "https://www.openstreetmap.org/" . $item["osm_type"] . "/" . $item["osm_id"],
"base_url" => "www.openstreetmap.org"
));
}
Expand Down

0 comments on commit 1a26c53

Please sign in to comment.