diff --git a/templates/utils.html b/templates/utils.html index 44bea0a..37d6ed8 100644 --- a/templates/utils.html +++ b/templates/utils.html @@ -44,7 +44,7 @@ {% if prefs.quicklist.len() > 0 %}
QUICK ACCESS FEEDS
{% for sub in prefs.quicklist %} - {{ sub }} + {% if sub.starts_with("u_") -%}{%let sub = format!("u/{}", &sub[2..]) -%}{{ sub }}{% else -%}{{ sub }}{% endif -%} {% endfor %} {% endif %}MAIN FEEDS
@@ -54,7 +54,7 @@ {% if prefs.subscriptions.len() > 0 %}REDDIT FEEDS
{% for sub in prefs.subscriptions %} - {{ sub }} + {% if sub.starts_with("u_") -%}{%let sub = format!("u/{}", &sub[2..]) -%}{{ sub }}{% else -%}{{ sub }}{% endif -%} {% endfor %} {% endif %}