From 0f81cb05ff1c605dea9749702b37b54d9e10d083 Mon Sep 17 00:00:00 2001 From: bashrc Date: Fri, 8 May 2026 10:45:57 +0100 Subject: [PATCH] Show loops address on person options screen --- webapp_person_options.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/webapp_person_options.py b/webapp_person_options.py index 77a757002..fe57376b7 100644 --- a/webapp_person_options.py +++ b/webapp_person_options.py @@ -493,6 +493,11 @@ def html_person_options(default_timeline: str, '

PeerTube' + \ ': ' + \ peertube + '

\n' + if loops: + options_str += \ + '

Loops' + \ + ': ' + \ + loops + '

\n' if tox_address: options_str += \ '

Tox: ' + remove_html(tox_address) + '

\n'