Remove some underpaying advertisers

This commit is contained in:
2021-12-23 19:18:33 +01:00
parent 4c81de5c1a
commit 6607efbc3a
2 changed files with 3 additions and 15 deletions

View File

@@ -13,7 +13,7 @@ onMount(() => {
return
}
switch (Math.floor(Math.random()*6)) {
switch (Math.floor(Math.random()*4)) {
case 0:
set_ad_type("aads")
break
@@ -24,12 +24,6 @@ onMount(() => {
set_ad_type("ads.plus")
break
case 3:
set_ad_type("adaround")
break
case 4:
set_ad_type("flyingsquare")
break
case 5:
set_ad_type("valueimpression")
break
}

View File

@@ -31,20 +31,14 @@ onMount(async () => {
return
}
switch (Math.floor(Math.random()*5)) {
switch (Math.floor(Math.random()*3)) {
case 0:
set_ad_type("ads.plus")
break
case 1:
set_ad_type("adaround")
break
case 2:
set_ad_type("flyingsquare")
break
case 3:
set_ad_type("aads")
break
case 4:
case 2:
set_ad_type("valueimpression")
break
}