Skip to content

Commit

Permalink
lowercase true or false from bool (#240)
Browse files Browse the repository at this point in the history
  • Loading branch information
semuserable authored Jun 25, 2021
1 parent adc0f52 commit 768133b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Sentry.Unity/UnityEventProcessor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ private static void PopulateUnity(Protocol.Unity unity)

private void PopulateTags(SentryEvent @event)
{
@event.SetTag("unity.gpu.supports_instancing", SystemInfo.supportsInstancing.ToString());
@event.SetTag("unity.gpu.supports_instancing", SystemInfo.supportsInstancing ? "true" : "false");
@event.SetTag("unity.device.device_type", SystemInfo.deviceType.ToString());
@event.SetTag("unity.install_mode", Application.installMode.ToString());

Expand Down

0 comments on commit 768133b

Please sign in to comment.