Add support for ads monetization type

This commit is contained in:
Lucas Verney 2021-01-15 20:33:41 +01:00
parent 7a01f8a861
commit 53661e13f7
1 changed files with 1 additions and 1 deletions

View File

@ -350,7 +350,7 @@ var app = new Vue({
return; return;
} }
this.offers[locale] = response.offers this.offers[locale] = response.offers
.filter(item => item.monetization_type == 'flatrate') .filter(item => item.monetization_type == 'flatrate' || item.monetization_type == 'ads')
.map(item => { .map(item => {
return { return {
url: item.urls.standard_web, url: item.urls.standard_web,