diff options
| author | default <nobody@localhost> | 2025-02-14 08:59:04 +0100 |
|---|---|---|
| committer | default <nobody@localhost> | 2025-02-14 08:59:04 +0100 |
| commit | fa9a6abf6095b8a0721cfba58d4d825e9d61a339 (patch) | |
| tree | 62d6000503edc93bdcd75086885ca52a07a5ea9c /html.c | |
| parent | b19b7154534c04de68792175e19eeacbcefe7c44 (diff) | |
| parent | 722eb6830b8dd1ead5718ce6b9fb83248783b5e4 (diff) | |
Merge branch 'master' of comam.es:git/snac2
Diffstat (limited to 'html.c')
| -rw-r--r-- | html.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1058,8 +1058,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, |