Explorar el Código

timeline_del() also deletes from the pinned and bookmark caches.

default hace 1 año
padre
commit
bff33fc2ed
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  1. 3 0
      data.c

+ 3 - 0
data.c

@@ -1232,6 +1232,9 @@ int timeline_del(snac *snac, const char *id)
     object_user_cache_del(snac, id, "public");
     object_user_cache_del(snac, id, "private");
 
+    unpin(snac, id);
+    unbookmark(snac, id);
+
     /* try to delete the object if it's not used elsewhere */
     return object_del_if_unref(id);
 }