ИГЖН в СМИ
Во время обработки запрошенного шаблона произошла ошибка...
The following has evaluated to null or missing:
==> defaultFullPosterURL [in template "20116#20152#60875" at line 17, column 65]
----
Tip: If the failing expression is known to be legally refer to something that's sometimes null or missing, either specify a default value like myOptionalVar!myDefault, or use <#if myOptionalVar??>when-present<#else>when-missing</#if>. (These only cover the last step of the expression; to cover the whole expression, use parenthesis: (myOptionalVar.foo)!myDefault, (myOptionalVar.foo)??
----
----
FTL stack trace ("~" means nesting-related):
- Failed at: ${defaultFullPosterURL} [in template "20116#20152#60875" at line 17, column 63]
---- 1<#if content??> 2 <div>${content.getData()}</div> 3</#if> 4<br> 5<#assign counter = 0> 6 7<#assign isPrint = getterUtil.getBoolean(renderRequest.getAttribute('view.jsp-print'))?string('true', 'false')> 8 9<#if isPrint == "false"> 10 <#if videoLink??> 11 <#if videoLink.getSiblings()?has_content> 12 <#list videoLink.getSiblings() as curVideoLink> 13 <#assign videoLinkTextLength = curVideoLink.getData()?length> 14 <#if videoLinkTextLength gt 0> 15 <#assign videoInfo = curVideoLink.getData()?eval/> 16 17 <video class="video-js vjs-16-9" poster="${defaultFullPosterURL}" preload="metadata" controls width="100%" height="354" data-source="${videoInfo[0]}"> 18 <source src="${videoInfo[3]}" type="video/${videoInfo[2]}"> 19 <source src="${videoInfo[5]}" type="video/${videoInfo[4]}"> 20 <source src="${videoInfo[7]}" type="video/${videoInfo[6]}"> 21 </video> 22 </#if> 23 </#list> 24 </#if> 25 </#if> 26</#if>