Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@

- Custom SessionReplay masks in MAUI Android apps ([#4121](https://github.com/getsentry/sentry-dotnet/pull/4121))

### Fixes

- Work around iOS SHA1 bug ([#4143](https://github.com/getsentry/sentry-dotnet/pull/4143))

## 5.6.0

### Features
Expand Down
5 changes: 4 additions & 1 deletion src/Sentry/SentryOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1816,8 +1816,11 @@ internal void SetupLogging()
{
return null;
}

#if IOS || ANDROID // on iOS or Android the app is already sandboxed so there's no risk of sending data from 1 app to another Sentry's DSN
return Path.Combine(CacheDirectoryPath, "Sentry");
#else
return Path.Combine(CacheDirectoryPath, "Sentry", Dsn.GetHashString());
#endif
}

internal string? TryGetProcessSpecificCacheDirectoryPath()
Expand Down
Loading