Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 0620083

Browse files
committedDec 20, 2024··
* Ensure autoplayPlaylists on watch page is a local state (even though no control to change it yet)
1 parent d4290aa commit 0620083

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎src/renderer/views/Watch/Watch.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ export default defineComponent({
111111
/** @type {'EQUIRECTANGULAR' | 'EQUIRECTANGULAR_THREED_TOP_BOTTOM' | 'MESH'| null} */
112112
vrProjection: null,
113113
playNextRecommendedVideo: false,
114+
autoplayPlaylists: false,
114115
recommendedVideos: [],
115116
downloadLinks: [],
116117
watchingPlaylist: false,
@@ -183,7 +184,7 @@ export default defineComponent({
183184
playNextRecommendedVideoByDefault: function () {
184185
return this.$store.getters.getPlayNextVideo
185186
},
186-
autoplayPlaylists: function () {
187+
autoplayPlaylistsByDefault: function () {
187188
return this.$store.getters.getAutoplayPlaylists
188189
},
189190
hideRecommendedVideos: function () {
@@ -305,6 +306,7 @@ export default defineComponent({
305306
this.activeFormat = this.defaultVideoFormat
306307
// So that the value for this session remains unchanged even if setting changed
307308
this.playNextRecommendedVideo = this.playNextRecommendedVideoByDefault
309+
this.autoplayPlaylists = this.autoplayPlaylistsByDefault
308310

309311
this.checkIfTimestamp()
310312
},

0 commit comments

Comments
 (0)
Please sign in to comment.