mirror of https://codeberg.org/cage/tinmop/
- skipped threads group (pair timeline and folder) that has not
statuses marked to be deleted when sorting all statuses before quitting the program. Hopefully this is the last change needed to remove long waiting times before program process terminate, returning to the shell.
This commit is contained in:
parent
17bb9f5f15
commit
6228858e79
|
@ -1974,7 +1974,9 @@ messages are sorted as below:
|
||||||
(let ((all-folders (all-folders))
|
(let ((all-folders (all-folders))
|
||||||
(all-timelines (all-status-timelines)))
|
(all-timelines (all-status-timelines)))
|
||||||
(loop for folder in all-folders do
|
(loop for folder in all-folders do
|
||||||
(loop for timeline in all-timelines do
|
(loop for timeline in all-timelines
|
||||||
|
when (statuses-marked-to-delete timeline folder)
|
||||||
|
do
|
||||||
(renumber-timeline-message-index timeline folder :account-id nil)))))
|
(renumber-timeline-message-index timeline folder :account-id nil)))))
|
||||||
|
|
||||||
(defun all-attachments-to-status (status-id)
|
(defun all-attachments-to-status (status-id)
|
||||||
|
|
Loading…
Reference in New Issue