mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-14 17:45:04 +00:00
notify_list() returns the notifications in reverse order.
This commit is contained in:
parent
7718ed2fc7
commit
995fd81e48
1 changed files with 1 additions and 1 deletions
2
data.c
2
data.c
|
@ -1567,7 +1567,7 @@ xs_list *notify_list(snac *snac, int new_only)
|
|||
t = notify_check_time(snac, 0);
|
||||
|
||||
xs *spec = xs_fmt("%s/notify/" "*.json", snac->basedir);
|
||||
xs *lst = xs_glob(spec, 1, 0);
|
||||
xs *lst = xs_glob(spec, 1, 1);
|
||||
xs_list *out = xs_list_new();
|
||||
xs_list *p = lst;
|
||||
xs_str *v;
|
||||
|
|
Loading…
Reference in a new issue