Use url parameters instead of path

This commit is contained in:
2022-12-09 17:14:42 +01:00
parent 2a45573cd9
commit 6d028919b7
2 changed files with 22 additions and 2 deletions

View File

@ -34,7 +34,8 @@
{% set hook_from_feed = feed_webhook["webhook"] %}
{% if hook_from_context.url == hook_from_feed %}
<li class="list-group-item" style="background:#111111">
<a class="text-muted" href="/feed/{{ feed.url }}">{{ feed.url }}</a>
<a class="text-muted"
href="/feed?feed_url={{ feed.url|encode_url }}">{{ feed.url }}</a>
</li>
{% endif %}
{% endfor %}