Add Platform/OS to plugin feedback

This commit is contained in:
Lyna 2025-08-20 10:52:20 +02:00
parent 1702c3be29
commit 7645c45509
No known key found for this signature in database

View file

@ -36,6 +36,7 @@ internal static class BugBait
Reporter = reporter,
Name = plugin.InternalName,
Version = isTesting ? plugin.TestingAssemblyVersion?.ToString() : plugin.AssemblyVersion.ToString(),
Platform = Util.GetHostPlatform().ToString(),
DalamudHash = Util.GetScmVersion(),
};
@ -66,6 +67,9 @@ internal static class BugBait
[JsonProperty("version")]
public string? Version { get; set; }
[JsonProperty("platform")]
public string? Platform { get; set; }
[JsonProperty("reporter")]
public string? Reporter { get; set; }