1
0
mirror of https://codeberg.org/cage/tinmop/ synced 2025-01-24 03:30:48 +01:00

- [fediverse] save reblogged status, if any, when fetching a status from the server.

This commit is contained in:
cage 2024-06-29 14:55:35 +02:00
parent 07bdc7c65c
commit 4d3d2050b2

View File

@ -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)