diff --git a/README.md b/README.md index ec08bd9..d1506c2 100755 --- a/README.md +++ b/README.md @@ -82,7 +82,7 @@ yarn run test ![Architecture](/doc/architecture.jpg "Architecture") ### Immoscout -Immoscout has implemented advanced bot detection. I’m actively working on bypassing these measures, but until then, selecting Immoscout as a provider will not return any results. I apologize for the inconvenience. 😉 +Immoscout has implemented advanced bot detection. In order to work around this, we are using a reversed engineered version of their mobile api. For now, only real estate rentals are supported. Purchases will be supported at a later point in time. # Analytics Fredy is completely free (and will always remain free). However, it would be a huge help if you’d allow me to collect some analytical data. diff --git a/lib/provider/immoscout.js b/lib/provider/immoscout.js index 4c4f40b..8abf98a 100644 --- a/lib/provider/immoscout.js +++ b/lib/provider/immoscout.js @@ -72,7 +72,7 @@ async function getListings(url) { price: price?.value, size: size?.value, title: item.title, - link: `${metaInformation.baseUrl}/expose/${item.id}`, + link: `${metaInformation.baseUrl}expose/${item.id}`, address: item.address?.line, }; }); diff --git a/ui/src/views/jobs/mutation/components/provider/ProviderMutator.jsx b/ui/src/views/jobs/mutation/components/provider/ProviderMutator.jsx index a94747e..f6545d2 100644 --- a/ui/src/views/jobs/mutation/components/provider/ProviderMutator.jsx +++ b/ui/src/views/jobs/mutation/components/provider/ProviderMutator.jsx @@ -101,10 +101,7 @@ export default function ProviderMutator({ onVisibilityChanged, visible = false, description={

- Immoscout will not work at the moment due to advanced bot detection. I'm currently working on a fix. -

-

- Until a fix has been released, Immoscout won't yield any results. + Currently, Immoscout only works for real estate rentals. Purchases are not yet supported.

}