diff --git a/castable-video.js b/castable-video.js index 4531f50..7e974a8 100644 --- a/castable-video.js +++ b/castable-video.js @@ -547,7 +547,8 @@ export const CastableVideoMixin = (superclass) => } get castStreamType() { - return this.getAttribute('cast-stream-type') ?? undefined; + // NOTE: Per https://github.com/video-dev/media-ui-extensions/issues/3 `streamType` may yield `"unknown"` + return this.getAttribute('cast-stream-type') ?? this.streamType ?? undefined; } set castStreamType(val) {