Add LoadAllApiLevels to troubleshooting payload (#808)

This commit is contained in:
tommadness 2022-04-23 10:41:13 -04:00 committed by GitHub
parent 6af9f47d6b
commit d8660ff764
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -74,6 +74,7 @@ namespace Dalamud.Support
Language = startInfo.Language.ToString(),
BetaKey = configuration.DalamudBetaKey,
DoPluginTest = configuration.DoPluginTest,
LoadAllApiLevels = configuration.LoadAllApiLevels,
InterfaceLoaded = interfaceManager?.IsReady ?? false,
HasThirdRepo = configuration.ThirdRepoList is { Count: > 0 },
ForcedMinHook = EnvironmentConfiguration.DalamudForceMinHook,
@ -115,6 +116,8 @@ namespace Dalamud.Support
public bool DoPluginTest { get; set; }
public bool LoadAllApiLevels { get; set; }
public bool InterfaceLoaded { get; set; }
public bool ForcedMinHook { get; set; }