[fixed] Orderby recordingDate has empty result

Hi all,

I managed to add a widget with a customized Podlove template, but I can’t get the orderby recordingDate working …

Following gives me the right result, ordered by publicationDate:

{% for e in podcast.episodes({orderby: ‘publicationDate’}) %}
{{ e.title }}
{{ e.recordingDate }}
{% if not is_feed() %}

{# display web player for episode #}
{{ e.player }}

{% endif %}
{% endfor %}

But I would like to order it by recordingDate. Yet, following code throws an empty result:

{% for e in podcast.episodes({orderby: ‘recordingDate’}) %}
{{ e.title }}
{{ e.recordingDate }}
{% if not is_feed() %}

{# display web player for episode #}
{{ e.player }}

{% endif %}
{% endfor %}

I have checked the recording_date fileds for the episodes in the database and these are properly filled …

Am I doing something wrong here?

Might be a bug, I will have a look.

Thanks already Eric!

Hi Eric, have you been able to make some progress on this topic?

Thanks!

Regards,

Gosse

I will post here when I know more.

It’s fixed and will be included in the following release.

Hi Eric,

I just updated the plugin and I can confirm it’working! :smiley:
Thanks a lot!

Kind regards,

Gosse