codex - 💡(How to fix) Fix Recording voice, sending, then switching threads leads to message loss [2 comments, 2 participants]

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…
GitHub stats
openai/codex#18344Fetched 2026-04-18 05:55:32
View on GitHub
Comments
2
Participants
2
Timeline
6
Reactions
0
Timeline (top)
labeled ×3commented ×2renamed ×1
RAW_BUFFERClick to expand / collapse

What version of the Codex App are you using (From “About Codex” dialog)?

Version 26.415.21839 (1763)

What subscription do you have?

Pro

What platform is your computer?

Darwin 25.3.0 arm64 arm

What issue are you seeing?

When i record a voice message and don't wait for transcription to finish and the send to happen and switch threads, I always lose my message.

I understand that the message is tied to the input but this is hyper annoying.

Once i click send, i want it to send even if i poke around the app while its transcribing.

What steps can reproduce the bug?

  1. Dictate long message
  2. Click send
  3. Navigate to different thread

What is the expected behavior?

To always send if i clicked send even if i navigate away.

Additional information

No response

extent analysis

TL;DR

Implement a mechanism to decouple the voice message sending process from the current thread, allowing the transcription and sending to complete in the background.

Guidance

  • Identify the current implementation of the send button's click event and modify it to trigger an asynchronous process for transcription and sending, rather than relying on the current thread's context.
  • Consider using a queue or a background task manager to handle the transcription and sending of voice messages, ensuring that they are processed even if the user navigates away.
  • Review the app's navigation and thread-switching logic to ensure that it does not interrupt or cancel ongoing background tasks, such as transcription and sending of voice messages.
  • Investigate the use of a callback or a promise to handle the completion of the transcription and sending process, allowing the app to notify the user of the outcome regardless of the current thread.

Example

No code example is provided due to the lack of specific implementation details in the issue.

Notes

The solution may require significant changes to the app's architecture and asynchronous processing mechanisms. Additionally, ensuring a seamless user experience while handling background tasks and navigation may require careful consideration of edge cases and error handling.

Recommendation

Apply a workaround by implementing a background task manager or queue to handle voice message transcription and sending, allowing the app to process these tasks even when the user navigates away. This approach is recommended as it addresses the core issue of decoupling the sending process from the current thread, providing a better user experience.

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING