mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-08-05 05:25:26 +02:00
fix: ignore nightly and develop in version check (#2242)
This commit is contained in:
parent
9650ba9b00
commit
8d79773bf6
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ class AdminAboutController(BaseAdminController):
|
|||
email_ready=settings.SMTP_ENABLE,
|
||||
ldap_ready=settings.LDAP_ENABLED,
|
||||
base_url_set=settings.BASE_URL != "http://localhost:8080",
|
||||
is_up_to_date=get_latest_version() == APP_VERSION,
|
||||
is_up_to_date=APP_VERSION == "develop" or APP_VERSION == "nightly" or get_latest_version() == APP_VERSION,
|
||||
)
|
||||
|
||||
@router.get("/docker/validate", response_model=DockerVolumeText)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue