remove onion and i2p
This commit is contained in:
parent
38b2290603
commit
19247ce30d
|
@ -2,7 +2,8 @@ const fetch = require('node-fetch')
|
||||||
|
|
||||||
async function getInstance() {
|
async function getInstance() {
|
||||||
const instances = await (await fetch('https://api.invidious.io/instances.json?pretty=1')).json()
|
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() {
|
async function getPipedInstance() {
|
||||||
|
|
Loading…
Reference in New Issue