There was an error while loading. Please reload this page.
1 parent f24e3e1 commit 5e53734Copy full SHA for 5e53734
plugins/browser-plugin-media-tracking/src/entities.ts
@@ -18,7 +18,7 @@ export function buildHTMLMediaElementEntity(el: HTMLAudioElement | HTMLVideoElem
18
autoPlay: el.autoplay,
19
buffered: timeRangesToObjectArray(el.buffered),
20
controls: el.controls,
21
- currentSrc: el.currentSrc,
+ currentSrc: el.currentSrc || el.src,
22
defaultMuted: el.defaultMuted || false,
23
defaultPlaybackRate: el.defaultPlaybackRate,
24
error: el.error ? { code: el.error?.code, message: el.error?.message } : null,
0 commit comments