mirror of
https://github.com/TeamPiped/Piped.git
synced 2025-12-13 11:38:17 +00:00
Allow choosing skipping segments.
This commit is contained in:
@@ -129,7 +129,14 @@ export default {
|
||||
Constants.BASE_URL +
|
||||
"/sponsors/" +
|
||||
this.$route.query.v +
|
||||
'?category=["sponsor","interaction","selfpromo","music_offtopic"]'
|
||||
"?category=" +
|
||||
(localStorage
|
||||
? encodeURIComponent(
|
||||
"[" + localStorage.getItem("selectedSkip") + "]"
|
||||
)
|
||||
: encodeURIComponent(
|
||||
'["sponsor", "interaction", "selfpromo", "music_offtopic"]'
|
||||
))
|
||||
);
|
||||
},
|
||||
onChange() {
|
||||
|
||||
Reference in New Issue
Block a user