Fix non-standard behavior

This commit is contained in:
Michael Fabian 'Xaymar' Dirks
2022-11-27 01:45:02 +01:00
parent 60aaaf7132
commit 4ccdd5391e
2 changed files with 62 additions and 56 deletions
@@ -72,7 +72,7 @@ videos:
{% for bitrate in page.videos.bitrates %}
{% for resolution in page.videos.resolutions %}
{% for encoder in page.videos.encoders %}
{% assign real_url = encoder.url | replace: ":video", video.id | replace: ":res", resolution | replace: ":rate", bitrate | absolute_url%}
{% assign real_url = encoder.url | replace: ":video", video.id | replace: ":res", resolution | replace: ":rate", bitrate | absolute_url %}
<source src="{{ real_url }}" title="{{ bitrate }} kbit/s, {{ resolution }}, {{ encoder.name }}">
{% endfor %}
{% endfor %}