mirror of
https://github.com/imputnet/cobalt.git
synced 2024-12-26 17:46:06 +00:00
api/youtube: don't retrieve the player as cobalt doesn't use it
we don't decipher anything lol
This commit is contained in:
parent
e1b84e7472
commit
4b8b0a0e9e
|
@ -68,7 +68,8 @@ const cloneInnertube = async (customFetch) => {
|
|||
const shouldRefreshPlayer = lastRefreshedAt + PLAYER_REFRESH_PERIOD < new Date();
|
||||
if (!innertube || shouldRefreshPlayer) {
|
||||
innertube = await Innertube.create({
|
||||
fetch: customFetch
|
||||
fetch: customFetch,
|
||||
retrieve_player: false,
|
||||
});
|
||||
lastRefreshedAt = +new Date();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue