mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-22 05:15:04 +00:00
If an attached image URL is already in the post content, don't show it.
This commit is contained in:
parent
be98082eee
commit
4563b9c2f5
1 changed files with 7 additions and 0 deletions
7
html.c
7
html.c
|
@ -1934,6 +1934,8 @@ xs_html *html_entry(snac *user, xs_dict *msg, int read_only,
|
||||||
xs_html_add(snac_content,
|
xs_html_add(snac_content,
|
||||||
content_attachments);
|
content_attachments);
|
||||||
|
|
||||||
|
const char *content = xs_dict_get(msg, "content");
|
||||||
|
|
||||||
int c = 0;
|
int c = 0;
|
||||||
const xs_dict *a;
|
const xs_dict *a;
|
||||||
while (xs_list_next(attach, &a, &c)) {
|
while (xs_list_next(attach, &a, &c)) {
|
||||||
|
@ -1942,6 +1944,11 @@ xs_html *html_entry(snac *user, xs_dict *msg, int read_only,
|
||||||
const char *name = xs_dict_get(a, "name");
|
const char *name = xs_dict_get(a, "name");
|
||||||
|
|
||||||
if (xs_startswith(type, "image/") || strcmp(type, "Image") == 0) {
|
if (xs_startswith(type, "image/") || strcmp(type, "Image") == 0) {
|
||||||
|
|
||||||
|
/* if this image is already in the post content, skip */
|
||||||
|
if (xs_str_in(content, href) != -1)
|
||||||
|
continue;
|
||||||
|
|
||||||
xs_html_add(content_attachments,
|
xs_html_add(content_attachments,
|
||||||
xs_html_tag("a",
|
xs_html_tag("a",
|
||||||
xs_html_attr("href", href),
|
xs_html_attr("href", href),
|
||||||
|
|
Loading…
Reference in a new issue