mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
fix(Troubleshooting): order plugin names
This commit is contained in:
parent
1083c2f95e
commit
d419b0155e
1 changed files with 1 additions and 1 deletions
|
|
@ -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(),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue