From 92a70be7f23577949bc8c50b736fa37086176e20 Mon Sep 17 00:00:00 2001 From: default Date: Fri, 14 Feb 2025 07:04:14 +0100 Subject: Minor string tweak. --- html.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'html.c') diff --git a/html.c b/html.c index d713fbb..10ce4ce 100644 --- a/html.c +++ b/html.c @@ -1052,8 +1052,8 @@ static xs_html *html_user_body(snac *user, int read_only) const char *longitude = xs_dict_get_def(user->config, "longitude", ""); if (*latitude && *longitude) { - xs *label = xs_fmt(L("%s,%s"), latitude, longitude); - xs *url = xs_fmt(L("https://openstreetmap.org/search?query=%s,%s"), + xs *label = xs_fmt("%s,%s", latitude, longitude); + xs *url = xs_fmt("https://openstreetmap.org/search?query=%s,%s", latitude, longitude); xs_html_add(top_user, -- cgit v1.2.3