Remember the fullscreen state on autoplay

This commit is contained in:
Bnyro 2023-01-27 18:13:20 +01:00
parent 604eb5edcc
commit fdb2f6b9a0

View File

@ -557,6 +557,10 @@ export default {
videoEl.playbackRate = rate;
videoEl.defaultPlaybackRate = rate;
});
// expand the player to fullscreen when the fullscreen query equals true
if (this.$route.query.fullscreen === "true" && !this.$ui.getControls().isFullScreenEnabled())
this.$ui.getControls().toggleFullScreen();
},
async updateProgressDatabase(time) {
// debounce
@ -600,6 +604,8 @@ export default {
searchParams.set(param, params[param]);
break;
}
// save the fullscreen state
searchParams.set("fullscreen", this.$ui.getControls().isFullScreenEnabled());
const paramStr = searchParams.toString();
if (paramStr.length > 0) url += "&" + paramStr;
this.$router.push(url);