From d688fed7d20a297657b364d3cfbd71352e7deea9 Mon Sep 17 00:00:00 2001 From: GreemDev Date: Tue, 3 Jun 2025 18:38:22 -0500 Subject: [PATCH] missed the projects/ API endpoint part --- src/Ryujinx/Systems/Updater/Updater.GitLab.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ryujinx/Systems/Updater/Updater.GitLab.cs b/src/Ryujinx/Systems/Updater/Updater.GitLab.cs index 6e5e914e0..cd3a3f411 100644 --- a/src/Ryujinx/Systems/Updater/Updater.GitLab.cs +++ b/src/Ryujinx/Systems/Updater/Updater.GitLab.cs @@ -131,7 +131,7 @@ namespace Ryujinx.Ava.Systems public override string ToString() => $"{Group}/{Project}"; public string GetLatestReleaseApiUrl() => - $"https://git.ryujinx.app/api/v4/{Id}/releases/permalink/latest"; + $"https://git.ryujinx.app/api/v4/projects/{Id}/releases/permalink/latest"; } } }