Skip to content

Commit

Permalink
fix: Attaching screenshots on native iOS crashes (#1517)
Browse files Browse the repository at this point in the history
  • Loading branch information
bitsandfoxes authored Dec 14, 2023
1 parent 5b36d91 commit 651cfe6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

### Fixes

- Fixed screenshots not being attached to iOS native crashes ([#1517](https://github.com/getsentry/sentry-unity/pull/1517))

### Dependencies

- Bump CLI from v2.21.2 to v2.22.3 ([#1501](https://github.com/getsentry/sentry-unity/pull/1501), [#1502](https://github.com/getsentry/sentry-unity/pull/1502))
Expand Down
2 changes: 1 addition & 1 deletion src/Sentry.Unity.Editor.iOS/NativeOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ internal static string Generate(SentryUnityOptions options)
@""enableAutoSessionTracking"": @NO,
@""enableAppHangTracking"": @NO,
@""sendDefaultPii"" : @{ToObjCString(options.SendDefaultPii)},
@""attachScreenshot"" : @""{options.AttachScreenshot}"",
@""attachScreenshot"" : @{ToObjCString(options.AttachScreenshot)},
@""release"" : @""{options.Release}"",
@""environment"" : @""{options.Environment}""
}};
Expand Down

0 comments on commit 651cfe6

Please sign in to comment.