Matrix Version:5.4.5.1
Is there a pattern for checking if several asset_metadata fields have content? I have found examples of how to check if an asset_metadata field equals multiple things, but not how to do something like
if (asset_metadata_thing1 OR asset_metadata_thing2) {
show thing that should be shown if either exists
}
OR
if (asset_metadata_thing1 AND asset_metadata_thing2) {
show thing that should be shown if both exist
}