fix fallback url for stable changelogs being the current release channel

This commit is contained in:
GreemDev 2025-06-03 02:58:01 -05:00
parent 72935bdbb6
commit d0c055ccb8

View File

@ -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;