Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## Unreleased

### 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