File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1414### Fixed
1515
1616- Type incompatibility warnings with Player version 8.235.0 and higher
17+ - Ads UI variant not shown
1718
1819## [ 4.4.0] - 2025-11-27
1920
Original file line number Diff line number Diff line change @@ -45,15 +45,15 @@ export class AdMessageLabel extends Label<LabelConfig> {
4545 super . configure ( player , uimanager ) ;
4646
4747 const config = this . getConfig ( ) ;
48- let text = config . text ;
48+ let text = config . text || '' ;
4949
5050 const updateMessageHandler = ( ) => {
5151 this . setText ( StringUtils . replaceAdMessagePlaceholders ( i18n . performLocalization ( text ) , null , player ) ) ;
5252 } ;
5353
5454 const adStartHandler = ( event : AdEvent ) => {
5555 const uiConfig = ( event . ad as LinearAd ) . uiConfig ;
56- text = uiConfig ?. message || config . text ;
56+ text = uiConfig ?. message || config . text || '' ;
5757
5858 updateMessageHandler ( ) ;
5959
You can’t perform that action at this time.
0 commit comments