remove onion and i2p

This commit is contained in:
localhost 2023-08-11 22:02:51 +01:00
parent 38b2290603
commit 19247ce30d
1 changed files with 2 additions and 1 deletions

View File

@ -2,7 +2,8 @@ const fetch = require('node-fetch')
async function getInstance() {
const instances = await (await fetch('https://api.invidious.io/instances.json?pretty=1')).json()
return `https://${instances[Math.floor(Math.random() * instances.length)][0]}`
const sorted = instances.filter(o => o[1].type == 'https')
return `https://${sorted[Math.floor(Math.random() * sorted.length)][0]}`
}
async function getPipedInstance() {