From d0c055ccb80cbc7a80c77cf6af5bc7c52c243403 Mon Sep 17 00:00:00 2001 From: GreemDev Date: Tue, 3 Jun 2025 02:58:01 -0500 Subject: [PATCH] fix fallback url for stable changelogs being the current release channel --- src/Ryujinx/Systems/Updater/Updater.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ryujinx/Systems/Updater/Updater.cs b/src/Ryujinx/Systems/Updater/Updater.cs index d1fddb25f..0c9a77023 100644 --- a/src/Ryujinx/Systems/Updater/Updater.cs +++ b/src/Ryujinx/Systems/Updater/Updater.cs @@ -144,7 +144,7 @@ namespace Ryujinx.Ava.Systems break; // Secondary button maps to no, which in this case is the show changelog button. case UserResult.No: - OpenHelper.OpenUrl(ReleaseInformation.GetChangelogUrl(currentVersion, newVersion, _changelogUrlFormat.Format(currentVersion))); + OpenHelper.OpenUrl(ReleaseInformation.GetChangelogUrl(currentVersion, newVersion, _stableUrlFormat.Format(currentVersion))); goto RequestUserToUpdate; default: _running = false;