This commit is contained in:
Timothy J. Baek
2024-09-30 16:32:38 +02:00
parent 37e0d47082
commit c7a0e45bea
5 changed files with 20 additions and 15 deletions

View File

@@ -2191,7 +2191,8 @@ async def get_app_latest_release_version():
latest_version = data["tag_name"]
return {"current": VERSION, "latest": latest_version[1:]}
except aiohttp.ClientError:
except Exception as e:
log.debug(e)
return {"current": VERSION, "latest": VERSION}