File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed
Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -129,6 +129,13 @@ export const YoutubeBlockComponent = ({
129129 return posterImage ;
130130 }
131131
132+ // For Liveblog Articles with a Video atom for their main media
133+ // we need to display the poster image
134+ // Note: main media videos in liveblogs tend to be transitory eg PMQs
135+ if ( contentLayout ?. toLowerCase ( ) === 'livebloglayout' ) {
136+ return posterImage ;
137+ }
138+
132139 // Default behaviour is to use the override image, if supplied
133140 // otherwise use the poster image
134141 return overrideImage ?? posterImage ;
Original file line number Diff line number Diff line change @@ -674,6 +674,7 @@ export const LiveLayout = (props: WebProps | AppsProps) => {
674674 isAdFreeUser = { article . isAdFreeUser }
675675 editionId = { article . editionId }
676676 shouldHideAds = { article . shouldHideAds }
677+ contentLayout = "LiveblogLayout"
677678 />
678679 </ div >
679680 </ GridItem >
You can’t perform that action at this time.
0 commit comments