Hello, After the latest Grav CMS update I am getting "bad data formatter" error on page twig templates. The template is trying to fetch flex collection.
The error:
An exception has been thrown during the rendering of a template ("Bad Data Formatter").
The part of the twig template code:
{% set flex = grav.get('flex_objects') %}
{% set artists = flex.directory('artists') %}
{% set collection = artists.getCollection() %}
The error is thrown on set collection line.
Did something change on how to get flex objects data?
How would You debug it??
Thanks!