fix(Troubleshooting): order plugin names

This commit is contained in:
goat 2022-01-25 22:16:53 +01:00
parent 1083c2f95e
commit d419b0155e
No known key found for this signature in database
GPG key ID: 7773BB5B43BA52E5

View file

@ -67,7 +67,7 @@ namespace Dalamud.Support
{
var payload = new TroubleshootingPayload
{
LoadedPlugins = pluginManager?.InstalledPlugins?.Select(x => x.Manifest)?.ToArray(),
LoadedPlugins = pluginManager?.InstalledPlugins?.Select(x => x.Manifest)?.OrderByDescending(x => x.InternalName).ToArray(),
DalamudVersion = Util.AssemblyVersion,
DalamudGitHash = Util.GetGitHash(),
GameVersion = startInfo.GameVersion.ToString(),