File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 6
6
7
7
- Custom SessionReplay masks in MAUI Android apps ([ #4121 ] ( https://github.com/getsentry/sentry-dotnet/pull/4121 ) )
8
8
9
+ ### Fixes
10
+
11
+ - Work around iOS SHA1 bug ([ #4143 ] ( https://github.com/getsentry/sentry-dotnet/pull/4143 ) )
12
+
9
13
## 5.6.0
10
14
11
15
### Features
Original file line number Diff line number Diff line change @@ -1816,8 +1816,11 @@ internal void SetupLogging()
1816
1816
{
1817
1817
return null ;
1818
1818
}
1819
-
1819
+ #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
1820
+ return Path . Combine ( CacheDirectoryPath , "Sentry" ) ;
1821
+ #else
1820
1822
return Path . Combine ( CacheDirectoryPath , "Sentry" , Dsn . GetHashString ( ) ) ;
1823
+ #endif
1821
1824
}
1822
1825
1823
1826
internal string ? TryGetProcessSpecificCacheDirectoryPath ( )
You can’t perform that action at this time.
0 commit comments