Skip to content

Latest commit

 

History

History
39 lines (28 loc) · 957 Bytes

troubleshootfeed.md

File metadata and controls

39 lines (28 loc) · 957 Bytes

Any podcast episodes without podcast_length

{% for ep in site.categories.podcasts %} {% if ep.podcast_length == blank %}

{{ ep.podcast_link | remove: "www.podtrac.com/pts/redirect.mp3/" }}

{% endif %} {% endfor %}

Any podcast episodes with invalid podcast_length

{% for ep in site.categories.podcasts %} {% assign len = ep.podcast_length | plus: 0 %} {% if len <= 0 %}

{{ ep.podcast_link | remove: "www.podtrac.com/pts/redirect.mp3/" }}

{% endif %} {% endfor %}

{% for ep in site.categories.podcasts %} {% if ep.podcast_length == blank %}

{{ ep.podcast_link | remove: "www.podtrac.com/pts/redirect.mp3/" }}

{% endif %} {% endfor %}

Any podcast episodes with missing podcast_link

{% for ep in site.categories.podcasts %} {% if ep.podcast_link == blank %}

{{ ep.title }}

{% endif %} {% endfor %}

List of all MP3 links

{% for ep in site.categories.podcasts %} {{ ep.podcast_link }}
{% endfor %}