mirror of
https://github.com/mmjee/Piped-Material.git
synced 2024-12-06 19:26:36 +01:00
Don't call the SponsorBlock API if no segments are to be skipped
This commit is contained in:
@@ -248,10 +248,14 @@ export default {
|
||||
if (!this.$store.getters['prefs/getPreference']('sponsorblock', true)) {
|
||||
return
|
||||
}
|
||||
const selectedSkip = this.$store.getters['prefs/getPreference']('selectedSkip')
|
||||
if (selectedSkip.length === 0) {
|
||||
return
|
||||
}
|
||||
this.sponsors = await this.$store.dispatch('auth/makeRequest', {
|
||||
path: '/sponsors/' + this.videoId,
|
||||
params: {
|
||||
category: JSON.stringify(this.$store.getters['prefs/getPreference']('selectedSkip'))
|
||||
category: JSON.stringify()
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user