File size: 663 Bytes
5ec2e9b | 1 2 3 4 5 6 7 8 9 10 11 12 | // Set to `undefined` if it's no longer in use!
//
// Old Players IDs are usually available for a few more days after Youtube
// rolls out a new Player. This is helpful when Youtube.JS is not able to
// extract the signature decipher algorithm and we need to wait for a fix
// in Youtube.JS.
export const PLAYER_ID = undefined;
// Error message shown when tokenMinter is not yet ready
export const TOKEN_MINTER_NOT_READY_MESSAGE =
"Companion is starting. Please wait until a valid potoken is found. If this process takes too long, please consult: https://docs.invidious.io/youtube-errors-explained/#po-token-initialization-taking-too-much-time-to-complete";
|