mirror of https://codeberg.org/cage/tinmop/
- prevented crash when updating mentions
The 'status' slot in a 'mention' object can be nil, in this case expand the tree does not makes sense and should be avoided.
This commit is contained in:
parent
2f13acdc7f
commit
1bf02d1fda
|
@ -692,7 +692,10 @@ the latest 15 mentions)."
|
|||
|
||||
(defun update-mentions-folder (&key (delete-mentions-on-server t))
|
||||
(when-let* ((all-mentions (all-mentions))
|
||||
(trees (flatten (loop for mention in all-mentions collect
|
||||
(trees (flatten (loop
|
||||
for mention in all-mentions
|
||||
when (tooter:status mention)
|
||||
collect
|
||||
(expand-status-tree (tooter:status mention)))))
|
||||
(event (make-instance 'program-events:save-timeline-in-db-event
|
||||
:payload trees
|
||||
|
|
Loading…
Reference in New Issue