mirror of
https://github.com/open-webui/open-webui.git
synced 2026-05-07 19:38:46 -05:00
[GH-ISSUE #19509] issue: User overview page calls /api/v1/users multiple times #57571
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @luke-wren on GitHub (Nov 26, 2025).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/19509
Check Existing Issues
Installation Method
Docker
Open WebUI Version
0.6.40
Ollama Version (if applicable)
No response
Operating System
Amazon Linux 2023 (via docker container)
Browser (if applicable)
142.0.7444.60
Confirmation
README.md.Expected Behavior
On the users page in admin settings, it should only fetch users from
/api/v1/usersonce.Actual Behavior
On the users page in admin settings, the
/api/v1/usersapi endpoint is called 4 times with the same query parameters.This has been observed on both v0.6.34 and v0.6.40.
Steps to Reproduce
Logs & Screenshots
The only relevant logs are records of the HTTP requests, this doesn't seem to be an app error, but a flaw in the frontend code which fetches content from the API.
Additional Information
No response
@Classic298 commented on GitHub (Nov 26, 2025):
@silentoplayz can you reproduce pls?
@silentoplayz commented on GitHub (Nov 26, 2025):
I can reproduce this, yes. Tested on Firefox.
@tjbck commented on GitHub (Nov 27, 2025):
Addressed in dev with
9f89cc5adc.@silentoplayz commented on GitHub (Nov 27, 2025):
Is it intended to still see two calls made to

/api/v1/users(rather than 1) when I click on theUserstab via the admin panel?