Show correct changelog in plugin installer window (#2236)

This commit is contained in:
Blair 2025-04-10 06:15:09 +10:00 committed by GitHub
parent d3dd3ab7c7
commit a555514de3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2715,7 +2715,7 @@ internal class PluginInstallerWindow : Window, IDisposable
ImGui.PushID($"installed{index}{plugin.Manifest.InternalName}");
var applicableChangelog = plugin.IsTesting ? remoteManifest?.Changelog : remoteManifest?.TestingChangelog;
var applicableChangelog = plugin.IsTesting ? remoteManifest?.TestingChangelog : remoteManifest?.Changelog;
var hasChangelog = !applicableChangelog.IsNullOrWhitespace();
var didDrawApplicableChangelogInsideCollapsible = false;