videojs / videojs-contrib-ads

A Tool for Building Video.js Ad Plugins
http://videojs.github.io/videojs-contrib-ads/
Other
379 stars 257 forks source link

fix: Don't break on nested macros with undefined parent #538

Closed mister-ben closed 1 year ago

mister-ben commented 1 year ago

Currently, a macro like {pageVariable.foo.bar} will cause an error if foo is not defined, as there's an attempt to access foo.bar.

Adds a check for whether each level is defined within the pageVariable string replacement.