Odysee as default instead of LBRY.tv

This commit is contained in:
kodxana 2021-05-24 22:50:30 +02:00 committed by GitHub
parent 170fab60c0
commit 6bc43fa5ca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,11 +3,11 @@ export interface LbrySettings {
redirect: keyof typeof redirectDomains
}
export const DEFAULT_SETTINGS: LbrySettings = { enabled: true, redirect: 'lbry.tv' };
export const DEFAULT_SETTINGS: LbrySettings = { enabled: true, redirect: 'Odysee' };
export const redirectDomains = {
'lbry.tv': { prefix: 'https://lbry.tv/', display: 'lbry.tv' },
odysee: { prefix: 'https://odysee.com/', display: 'odysee' },
'lbry.tv': { prefix: 'https://lbry.tv/', display: 'LBRY.tv' },
odysee: { prefix: 'https://odysee.com/', display: 'Odysee' },
app: { prefix: 'lbry://', display: 'App' },
};