fix media playback bug (#80)

This commit is contained in:
bachmanity1
2021-06-23 17:54:01 +09:00
committed by GitHub
parent d9d3e5461a
commit f5509d3a47
2 changed files with 6 additions and 1 deletions

View File

@@ -464,6 +464,7 @@ function serializeNode(
attributes.rr_mediaState = (n as HTMLMediaElement).paused
? 'paused'
: 'played';
attributes.rr_mediaCurrentTime = (n as HTMLMediaElement).currentTime
}
// scroll
if ((n as HTMLElement).scrollLeft) {