mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-17 14:55:23 +00:00
Merge pull request #2870 from mindspawn/proxy-fix2
Fix proxy not being used for /api/version/updates
This commit is contained in:
commit
b512501d9d
1 changed files with 1 additions and 1 deletions
|
|
@ -962,7 +962,7 @@ async def get_app_changelog():
|
||||||
@app.get("/api/version/updates")
|
@app.get("/api/version/updates")
|
||||||
async def get_app_latest_release_version():
|
async def get_app_latest_release_version():
|
||||||
try:
|
try:
|
||||||
async with aiohttp.ClientSession() as session:
|
async with aiohttp.ClientSession(trust_env=True) as session:
|
||||||
async with session.get(
|
async with session.get(
|
||||||
"https://api.github.com/repos/open-webui/open-webui/releases/latest"
|
"https://api.github.com/repos/open-webui/open-webui/releases/latest"
|
||||||
) as response:
|
) as response:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue