mirror of
https://github.com/mediacms-io/mediacms.git
synced 2026-05-02 03:00:12 -04:00
fix issue with uninitialized video player
This commit is contained in:
@@ -192,7 +192,7 @@ export function VideoPlayer(props) {
|
|||||||
document.addEventListener('visibilitychange', initPlayer);
|
document.addEventListener('visibilitychange', initPlayer);
|
||||||
}
|
}
|
||||||
|
|
||||||
player.player.one('loadedmetadata', () => {
|
player && player.player.one('loadedmetadata', () => {
|
||||||
const urlParams = new URLSearchParams(window.location.search);
|
const urlParams = new URLSearchParams(window.location.search);
|
||||||
const paramT = Number(urlParams.get('t'));
|
const paramT = Number(urlParams.get('t'));
|
||||||
const timestamp = !isNaN(paramT) ? paramT : 0;
|
const timestamp = !isNaN(paramT) ? paramT : 0;
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
+1
-1
File diff suppressed because one or more lines are too long
+1
-1
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user