diff --git a/app/crawler/specificCrawlers/prostor.js b/app/crawler/specificCrawlers/prostor.js index 04be5f3..104d5d0 100644 --- a/app/crawler/specificCrawlers/prostor.js +++ b/app/crawler/specificCrawlers/prostor.js @@ -191,13 +191,7 @@ class ProstorCrawler { const { lat, lng, property_name, price, size, link, status } = realEstate; //Status information is given already in realestate list - //For VIP Ads status ='' canot be used, but no VIP ads are crawled - //We will make "fake" vip ad for RE that have size=55 - //It is weird because yesterday it said 'VIP ponuda' ??? - const adStatus = - size === "55" - ? ProstorCrawler.getStatusId("VIP ponuda") - : ProstorCrawler.getStatusId(status); + const adStatus = ProstorCrawler.getStatusId(status); const url = `https://prostor.ba${link}`;