diff options
| author | 2024-02-15 17:34:46 +0100 | |
|---|---|---|
| committer | 2024-02-15 17:34:46 +0100 | |
| commit | 263e239653b79d230a7546b9db89ff71dc0f2a53 (patch) | |
| tree | 7d3718fe8a7927f4ea34028e2280ae384a05142b /html.c | |
| parent | mastoapi: fill the verified_at fields in mastoapi_account() for local users. (diff) | |
| download | snac2-263e239653b79d230a7546b9db89ff71dc0f2a53.tar.gz snac2-263e239653b79d230a7546b9db89ff71dc0f2a53.tar.xz snac2-263e239653b79d230a7546b9db89ff71dc0f2a53.zip | |
Moved verified links to its own json file.
Diffstat (limited to '')
| -rw-r--r-- | html.c | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -767,7 +767,7 @@ static xs_html *html_user_body(snac *user, int local) | |||
| 767 | xs_str *k; | 767 | xs_str *k; |
| 768 | xs_str *v; | 768 | xs_str *v; |
| 769 | 769 | ||
| 770 | xs_dict *val_links = xs_dict_get(user->config, "validated_links"); | 770 | xs_dict *val_links = user->links; |
| 771 | if (xs_is_null(val_links)) | 771 | if (xs_is_null(val_links)) |
| 772 | val_links = xs_stock_dict; | 772 | val_links = xs_stock_dict; |
| 773 | 773 | ||