From ad39254ddc529ac73721e7b0edf0476e3cdf247c Mon Sep 17 00:00:00 2001 From: ayaka Date: Sun, 22 Dec 2024 04:25:54 +1300 Subject: [PATCH] fix followed user rendering --- templates/utils.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 %}