diff --git a/nest_frontend/objects/Filter.js b/nest_frontend/objects/Filter.js index ddbe89d..0a00f9d 100644 --- a/nest_frontend/objects/Filter.js +++ b/nest_frontend/objects/Filter.js @@ -8,6 +8,7 @@ import { faLocationArrow, faMapMarkerAlt, faRetweet, } from "@fortawesome/free-solid-svg-icons" +import Coordinates from "./Coordinates" /** @@ -184,7 +185,7 @@ export class FilterInsideMapArea extends FilterWithLocation { return false } - return this.mapArea.includes(tweet.location) + return this.mapArea.includes(Coordinates.fromCrawlerString(tweet.location)) } display() {