Răsfoiți Sursa

In html_timeline(), always pick the msg from the global object storage.

This allows the logged instance timeline to work.

Does this have more implications? Not sure.
default 2 ani în urmă
părinte
comite
ae6aafeb88
1 a modificat fișierele cu 2 adăugiri și 0 ștergeri
  1. 2 0
      html.c

+ 2 - 0
html.c

@@ -1938,9 +1938,11 @@ xs_str *html_timeline(snac *user, const xs_list *list, int read_only,
         xs *msg = NULL;
         int status;
 
+#if 0
         if (user && !is_pinned_by_md5(user, v))
             status = timeline_get_by_md5(user, v, &msg);
         else
+#endif
             status = object_get_by_md5(v, &msg);
 
         if (!valid_status(status))