mirror of https://codeberg.org/cage/tinmop/
- [fediverse] save reblogged status, if any, when fetching a status from the server.
This commit is contained in:
parent
07bdc7c65c
commit
4d3d2050b2
|
@ -574,7 +574,11 @@
|
|||
(let ((dump (with-output-to-string (stream)
|
||||
(tooter::present status stream))))
|
||||
(dbg "fetch single status ~a" dump))
|
||||
(db:update-db status :folder folder :timeline timeline))))
|
||||
(db:update-db status :folder folder :timeline timeline)
|
||||
(when (tooter:parent status)
|
||||
(db:update-db (tooter:parent status)
|
||||
:folder folder
|
||||
:timeline timeline)))))
|
||||
|
||||
(defparameter *search-next-saved-event* nil)
|
||||
|
||||
|
|
Loading…
Reference in New Issue