Skip to content

Commit

Permalink
fix: ignore nightly and develop in version check (#2242)
Browse files Browse the repository at this point in the history
  • Loading branch information
hay-kot authored Mar 12, 2023
1 parent 9650ba9 commit 8d79773
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mealie/routes/admin/admin_about.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def check_app_config(self):
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)
Expand Down

0 comments on commit 8d79773

Please sign in to comment.