Skip to content
Merged
Changes from 1 commit
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
Next Next commit
work around iOS SHA1 bug
  • Loading branch information
bruno-garcia authored Apr 25, 2025
commit 2b9da096eec41f05757713adb5b0b61b59960a14
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