mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-27 07:13:36 +00:00
Pending follow notifications are shown as "Follow Request".
This commit is contained in:
parent
9fb84bcb3a
commit
0ddbe7e53b
1 changed files with 3 additions and 0 deletions
3
html.c
3
html.c
|
@ -2711,6 +2711,9 @@ xs_str *html_notifications(snac *user, int skip, int show)
|
|||
label = wrk;
|
||||
}
|
||||
}
|
||||
else
|
||||
if (strcmp(type, "Follow") == 0 && pending_check(user, actor_id))
|
||||
label = L("Follow Request");
|
||||
|
||||
xs *s_date = xs_crop_i(xs_dup(date), 0, 10);
|
||||
|
||||
|
|
Loading…
Reference in a new issue