diff options
| author | default <nobody@localhost> | 2024-11-07 22:01:00 +0100 |
|---|---|---|
| committer | default <nobody@localhost> | 2024-11-07 22:01:00 +0100 |
| commit | 585adead38b5a8ec543cc6fcc990b0d1ef4d62ba (patch) | |
| tree | a73ee117ed8872561f14367147f756fc27f292d8 /html.c | |
| parent | 34dbddb2b54060a9e9398447faf4399ba2484d41 (diff) | |
Fixed some URLs that should not be proxied.
Diffstat (limited to 'html.c')
| -rw-r--r-- | html.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -2037,7 +2037,7 @@ xs_html *html_entry(snac *user, xs_dict *msg, int read_only, xs_html_add(content_attachments, xs_html_tag("p", xs_html_tag("a", - xs_html_attr("href", href), + xs_html_attr("href", o_href), xs_html_text(href)))); /* do not generate an Alt... */ @@ -2047,10 +2047,10 @@ xs_html *html_entry(snac *user, xs_dict *msg, int read_only, xs_html_add(content_attachments, xs_html_tag("p", xs_html_tag("a", - xs_html_attr("href", href), + xs_html_attr("href", o_href), xs_html_text(L("Attachment")), xs_html_text(": "), - xs_html_text(href)))); + xs_html_text(o_href)))); /* do not generate an Alt... */ name = NULL; |