mirror of
https://github.com/mmjee/Piped-Material.git
synced 2024-12-06 19:26:36 +01:00
Disable LBRY by default
This commit is contained in:
@@ -91,7 +91,7 @@ export default {
|
||||
streams.push(...this.video.videoStreams)
|
||||
|
||||
const MseSupport = window.MediaSource !== undefined
|
||||
const lbry = this.$store.getters['prefs/getPreferenceBoolean']('disableLBRY', false)
|
||||
const lbry = this.$store.getters['prefs/getPreferenceBoolean']('disableLBRY', true)
|
||||
? null
|
||||
: this.video.videoStreams.filter(stream => stream.quality === 'LBRY')[0]
|
||||
let uri, mime
|
||||
|
||||
@@ -56,7 +56,7 @@ export default {
|
||||
{
|
||||
id: 'disableLBRY',
|
||||
type: 'bool',
|
||||
default: false
|
||||
default: true
|
||||
},
|
||||
{
|
||||
id: 'proxyLBRY',
|
||||
|
||||
@@ -9,7 +9,7 @@ const PrefsStore = {
|
||||
playerAutoplay: true,
|
||||
autoplay: false,
|
||||
listen: false,
|
||||
disableLBRY: false,
|
||||
disableLBRY: true,
|
||||
proxyLBRY: true,
|
||||
sponsorblock: true,
|
||||
skipToLastPoint: true
|
||||
|
||||
Reference in New Issue
Block a user