mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-09 19:50:26 +03:00
Added a fix to also show the mutual emoji in the people page.
This commit is contained in:
parent
1affef47b4
commit
0b08649a0d
10
html.c
10
html.c
@ -102,7 +102,7 @@ xs_str *actor_name(xs_dict *actor)
|
|||||||
|
|
||||||
|
|
||||||
xs_html *html_actor_icon(snac *user, xs_dict *actor, const char *date,
|
xs_html *html_actor_icon(snac *user, xs_dict *actor, const char *date,
|
||||||
const char *udate, const char *url, int priv)
|
const char *udate, const char *url, int priv, int in_people)
|
||||||
{
|
{
|
||||||
xs_html *actor_icon = xs_html_tag("p", NULL);
|
xs_html *actor_icon = xs_html_tag("p", NULL);
|
||||||
|
|
||||||
@ -128,7 +128,9 @@ xs_html *html_actor_icon(snac *user, xs_dict *actor, const char *date,
|
|||||||
if (user) {
|
if (user) {
|
||||||
fwer = follower_check(user, actor_id);
|
fwer = follower_check(user, actor_id);
|
||||||
fwing = following_check(user, actor_id);
|
fwing = following_check(user, actor_id);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (user && !in_people) {
|
||||||
/* if this actor is a follower or being followed, create an
|
/* if this actor is a follower or being followed, create an
|
||||||
anchored link to the people page instead of the actor url */
|
anchored link to the people page instead of the actor url */
|
||||||
if (fwer || fwing) {
|
if (fwer || fwing) {
|
||||||
@ -259,7 +261,7 @@ xs_html *html_msg_icon(snac *user, char *actor_id, const xs_dict *msg)
|
|||||||
date = xs_dict_get(msg, "published");
|
date = xs_dict_get(msg, "published");
|
||||||
udate = xs_dict_get(msg, "updated");
|
udate = xs_dict_get(msg, "updated");
|
||||||
|
|
||||||
actor_icon = html_actor_icon(user, actor, date, udate, url, priv);
|
actor_icon = html_actor_icon(user, actor, date, udate, url, priv, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
return actor_icon;
|
return actor_icon;
|
||||||
@ -2099,7 +2101,7 @@ xs_html *html_people_list(snac *snac, xs_list *list, char *header, char *t)
|
|||||||
xs_html_attr("name", md5)),
|
xs_html_attr("name", md5)),
|
||||||
xs_html_tag("div",
|
xs_html_tag("div",
|
||||||
xs_html_attr("class", "snac-post-header"),
|
xs_html_attr("class", "snac-post-header"),
|
||||||
html_actor_icon(NULL, actor, xs_dict_get(actor, "published"), NULL, NULL, 0)));
|
html_actor_icon(snac, actor, xs_dict_get(actor, "published"), NULL, NULL, 0, 1)));
|
||||||
|
|
||||||
/* content (user bio) */
|
/* content (user bio) */
|
||||||
char *c = xs_dict_get(actor, "summary");
|
char *c = xs_dict_get(actor, "summary");
|
||||||
@ -2294,7 +2296,7 @@ xs_str *html_notifications(snac *user)
|
|||||||
xs_html_add(entry,
|
xs_html_add(entry,
|
||||||
xs_html_tag("div",
|
xs_html_tag("div",
|
||||||
xs_html_attr("class", "snac-post"),
|
xs_html_attr("class", "snac-post"),
|
||||||
html_actor_icon(user, actor, NULL, NULL, NULL, 0)));
|
html_actor_icon(user, actor, NULL, NULL, NULL, 0, 0)));
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
xs *md5 = xs_md5_hex(id, strlen(id));
|
xs *md5 = xs_md5_hex(id, strlen(id));
|
||||||
|
Loading…
Reference in New Issue
Block a user