Disable timeline_request_replies() temporarily.

This commit is contained in:
default 2023-06-11 10:54:48 +02:00
parent e45ffa0fa2
commit 723343fc42
2 changed files with 11 additions and 0 deletions

View file

@ -2,6 +2,8 @@
## Open ## Open
Fix `timeline_request_replies()` issues (more info there).
Fix premature purge of actor by hardlinking the actor object inside the user `following/` subfolder. Fix premature purge of actor by hardlinking the actor object inside the user `following/` subfolder.
Replace weird, vestigial 'touch-by-append-spaces' in actor_get() with a more proper call to `utimes()`. Replace weird, vestigial 'touch-by-append-spaces' in actor_get() with a more proper call to `utimes()`.

View file

@ -200,6 +200,15 @@ void timeline_request_replies(snac *user, const char *id)
/* requests all replies of a message */ /* requests all replies of a message */
/* FIXME: experimental -- needs more testing */ /* FIXME: experimental -- needs more testing */
{ {
/* FIXME: TEMPORARILY DISABLED */
/* Reason: I've found that many of the posts in the 'replies' Collection
do not have an inReplyTo field (why??? aren't they 'replies'???).
For this reason, these requested objects are not stored as children
of the original post and they are shown as out-of-context, top level posts.
This is disabled until I find an elegant way of providing a parent
for these 'stray' children. */
return;
xs *msg = NULL; xs *msg = NULL;
if (!valid_status(object_get(id, &msg))) if (!valid_status(object_get(id, &msg)))