From 73f88b6ac54a0a8e61e374d77d9fb7615141f2ea Mon Sep 17 00:00:00 2001 From: localhost Date: Sat, 29 Jun 2024 13:28:30 +0200 Subject: [PATCH] remove cobalt health check --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 88cc52b..703763f 100644 --- a/index.js +++ b/index.js @@ -16,7 +16,7 @@ const platforms = ['iOS', 'YTSTUDIO_ANDROID', 'WEB', 'YTMUSIC_ANDROID', 'YTMUSIC app.get('/health', async (req, res) => { try { - const urls = ['/video/sRMMwpDTs5k', '/channel/UCRijo3ddMTht_IHyNSNXpNQ', '/videos/UCRijo3ddMTht_IHyNSNXpNQ', '/cobalt'] + const urls = ['/video/sRMMwpDTs5k', '/channel/UCRijo3ddMTht_IHyNSNXpNQ', '/videos/UCRijo3ddMTht_IHyNSNXpNQ'] const results = await Promise.all(urls.map(async (url) => { const response = await fetch(`http://localhost:8008${url}`);