Disable LBRY by default

This commit is contained in:
root
2021-11-25 23:52:50 +05:30
parent 6fb752f7f8
commit b095e20d0c
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -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
+1 -1
View File
@@ -56,7 +56,7 @@ export default {
{
id: 'disableLBRY',
type: 'bool',
default: false
default: true
},
{
id: 'proxyLBRY',
+1 -1
View File
@@ -9,7 +9,7 @@ const PrefsStore = {
playerAutoplay: true,
autoplay: false,
listen: false,
disableLBRY: false,
disableLBRY: true,
proxyLBRY: true,
sponsorblock: true,
skipToLastPoint: true