chore: update references to GitHub repository (#5861)

This commit is contained in:
Felix Schneider
2025-08-01 10:43:57 +02:00
committed by GitHub
parent b157c7034f
commit 591c96e52b
11 changed files with 14 additions and 17 deletions

View File

@@ -15,7 +15,7 @@ def get_latest_github_release() -> str:
str: The latest release from GitHub.
"""
url = "https://api.github.com/repos/hay-kot/mealie/releases/latest"
url = "https://api.github.com/repos/mealie-recipes/mealie/releases/latest"
response = requests.get(url)
response.raise_for_status()
return response.json()["tag_name"]