mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-15 01:55:03 +00:00
Deleted redundant code.
This commit is contained in:
parent
f3e7aff2d7
commit
5b270b903c
1 changed files with 1 additions and 3 deletions
4
html.c
4
html.c
|
@ -1198,7 +1198,6 @@ xs_html *html_entry(snac *user, xs_dict *msg, int local,
|
|||
char *type = xs_dict_get(msg, "type");
|
||||
char *actor;
|
||||
char *v;
|
||||
xs *boosts = NULL;
|
||||
|
||||
/* do not show non-public messages in the public timeline */
|
||||
if ((local || !user) && !is_msg_public(msg))
|
||||
|
@ -1307,8 +1306,7 @@ xs_html *html_entry(snac *user, xs_dict *msg, int local,
|
|||
xs_html_raw(s1));
|
||||
}
|
||||
|
||||
if (boosts == NULL)
|
||||
boosts = object_announces(id);
|
||||
xs *boosts = object_announces(id);
|
||||
|
||||
if (xs_list_len(boosts)) {
|
||||
/* if somebody boosted this, show as origin */
|
||||
|
|
Loading…
Reference in a new issue