Skip to content

v1.3.110

Choose a tag to compare

@topcheer topcheer released this 03 Jul 18:49
· 4035 commits to main since this release

v1.3.110

Bug Fixes

Fixed image data loss in TUI pending submission queue

Two bugs in pendingQueue caused images attached to queued submissions to be
silently lost:

  1. syncItemsFromQueue destroyed Images: Every time a new pending
    submission was enqueued, syncItemsFromQueue rebuilt q.items from the
    queue snapshot without preserving the Images field. This wiped images
    from previously queued items.

  2. consumeDetailed only grabbed first item's images: When multiple
    visible items were consumed together (via ConsumePrefix), only the first
    item's images were returned. Images from subsequent items were discarded.

Impact: If a user submitted text+images while the agent was busy, then
submitted again before the agent finished, the first submission's images would
vanish. The fix preserves images through queue rebuilds by text-matching, and
collects images from ALL consumed items.