hotfix: use Android client when requesting initial video info

This commit is contained in:
LuanRT
2022-08-11 20:35:30 -03:00
parent dc79b19d56
commit 34022fddfb
5 changed files with 56 additions and 68 deletions

View File

@@ -36,12 +36,11 @@ class Format {
/**
* Decipher the streaming url of the format.
*
* @param {import('../../../core/Player').default} player
* @returns {string} Deciphered URL for downloading
*/
decipher(player) {
return player.decipher(this.url, this.signature_cipher, this.cipher);
decipher() {
return this.url;
// Return player.decipher(this.url, this.signature_cipher, this.cipher);
}
}