diff options
| author | 2025-09-03 21:20:59 +0200 | |
|---|---|---|
| committer | 2025-09-03 21:20:59 +0200 | |
| commit | 5693c81d691f3fd68659ff30309a1402e2a6356a (patch) | |
| tree | 0dac43bee77a8a8085ac9dd0565e2111e7c5aa32 /data.c | |
| parent | Revert "Also keep a 'personal' folder for better organization." (diff) | |
| download | penes-snac2-5693c81d691f3fd68659ff30309a1402e2a6356a.tar.gz penes-snac2-5693c81d691f3fd68659ff30309a1402e2a6356a.tar.xz penes-snac2-5693c81d691f3fd68659ff30309a1402e2a6356a.zip | |
Always add a user's posts to the public timeline, even if it's not really public.
Diffstat (limited to 'data.c')
| -rw-r--r-- | data.c | 3 |
1 files changed, 3 insertions, 0 deletions
| @@ -1463,6 +1463,9 @@ void timeline_update_indexes(snac *snac, const char *id) | |||
| 1463 | else | 1463 | else |
| 1464 | srv_debug(1, xs_fmt("Not added to public instance index %s", id)); | 1464 | srv_debug(1, xs_fmt("Not added to public instance index %s", id)); |
| 1465 | } | 1465 | } |
| 1466 | else | ||
| 1467 | /* also add it to public, it will be discarded later */ | ||
| 1468 | object_user_cache_add(snac, id, "public"); | ||
| 1466 | } | 1469 | } |
| 1467 | } | 1470 | } |
| 1468 | } | 1471 | } |