I have searched for all existing open AND closed issues and discussions for similar requests. I have found none that is comparable to my request.
Verify Feature Scope
I have read through and understood the scope definition for feature requests in the Issues section. I believe my feature request meets the definition and belongs in the Issues section instead of the Discussions.
Problem Description
Every time you turn on the Voice mode the selected camera is reset in the call overlay. If you want to show something and ask about it you need to first select the right camera. After stopping the call and turn it back on you need to do it again.
Desired Solution you'd like
The user's last selected camera should be remembered for added convenience.
Tested in latest stable Mozilla Firefox and Google Chrome on Android.
OpenWebUI 0.9.2
Originally created by @Kylapaallikko on GitHub (May 6, 2026).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/24416
### Check Existing Issues
- [x] I have searched for all existing **open AND closed** issues and discussions for similar requests. I have found none that is comparable to my request.
### Verify Feature Scope
- [x] I have read through and understood the scope definition for feature requests in the Issues section. I believe my feature request meets the definition and belongs in the Issues section instead of the Discussions.
### Problem Description
Every time you turn on the `Voice mode` the selected camera is reset in the call overlay. If you want to show something and ask about it you need to first select the right camera. After stopping the call and turn it back on you need to do it again.
### Desired Solution you'd like
The user's last selected camera should be remembered for added convenience.
Something along this line might work?
```
const savedCameraId = localStorage.getItem('selectedVideoInputDeviceId');
if (savedCameraId) {
selectedVideoInputDeviceId = savedCameraId;
}
```
```
localStorage.setItem('selectedVideoInputDeviceId', e.detail);
```
### Alternatives Considered
_No response_
### Additional Context
- Tested in latest stable Mozilla Firefox and Google Chrome on Android.
- OpenWebUI 0.9.2
@owui-terminator[bot] commented on GitHub (May 6, 2026):
🔍Related Issues Found
I found some existing issues that might be related. Please check if any of these are duplicates or contain helpful solutions:
🟢#24315bug: Voice Mode Custom Prompt toggle always re-enables Both issues are about Voice Mode UI state not persisting across sessions/restarts. This one concerns a prompt toggle resetting, while #24416 concerns the selected camera resetting; both point to missing persistence for call/voice overlay settings. by Soakedcardinal · bug
🟣#2995 **enh: call voice input sensitivity ** This is the closest call-feature issue found, but it addresses audio input sensitivity rather than camera selection. It is related only in that it concerns the same voice call overlay component, so it may help locate adjacent code paths. by hsman2 · enhancement, good first issue, help wanted
💡 If your issue is a duplicate, please close it and add any additional details to the existing issue instead.
This comment was generated automatically. React with 👍 if helpful, 👎 if not.
<!-- gh-comment-id:4389947288 -->
@owui-terminator[bot] commented on GitHub (May 6, 2026):
<!-- terminator-bot:related-issues-reply -->
🔍 **Related Issues Found**
I found some existing issues that might be related. Please check if any of these are duplicates or contain helpful solutions:
1. 🟢 [#24315](https://github.com/open-webui/open-webui/issues/24315) **bug: Voice Mode Custom Prompt toggle always re-enables**
*Both issues are about Voice Mode UI state not persisting across sessions/restarts. This one concerns a prompt toggle resetting, while #24416 concerns the selected camera resetting; both point to missing persistence for call/voice overlay settings.*
*by Soakedcardinal · `bug`*
2. 🟣 [#2995](https://github.com/open-webui/open-webui/issues/2995) **enh: call voice input sensitivity **
*This is the closest call-feature issue found, but it addresses audio input sensitivity rather than camera selection. It is related only in that it concerns the same voice call overlay component, so it may help locate adjacent code paths.*
*by hsman2 · `enhancement`, `good first issue`, `help wanted`*
---
💡 If your issue is a duplicate, please close it and add any additional details to the existing issue instead.
*This comment was generated automatically.* React with 👍 if helpful, 👎 if not.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Originally created by @Kylapaallikko on GitHub (May 6, 2026).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/24416
Check Existing Issues
Verify Feature Scope
Problem Description
Every time you turn on the
Voice modethe selected camera is reset in the call overlay. If you want to show something and ask about it you need to first select the right camera. After stopping the call and turn it back on you need to do it again.Desired Solution you'd like
The user's last selected camera should be remembered for added convenience.
Something along this line might work?
Alternatives Considered
No response
Additional Context
@owui-terminator[bot] commented on GitHub (May 6, 2026):
🔍 Related Issues Found
I found some existing issues that might be related. Please check if any of these are duplicates or contain helpful solutions:
🟢 #24315 bug: Voice Mode Custom Prompt toggle always re-enables
Both issues are about Voice Mode UI state not persisting across sessions/restarts. This one concerns a prompt toggle resetting, while #24416 concerns the selected camera resetting; both point to missing persistence for call/voice overlay settings.
by Soakedcardinal ·
bug🟣 #2995 **enh: call voice input sensitivity **
This is the closest call-feature issue found, but it addresses audio input sensitivity rather than camera selection. It is related only in that it concerns the same voice call overlay component, so it may help locate adjacent code paths.
by hsman2 ·
enhancement,good first issue,help wanted💡 If your issue is a duplicate, please close it and add any additional details to the existing issue instead.
This comment was generated automatically. React with 👍 if helpful, 👎 if not.
@tjbck commented on GitHub (May 8, 2026):
Addressed in dev.