File tree 2 files changed +3
-2
lines changed
plugin-dev/Source/Sentry/Private/Android
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 21
21
22
22
- Fix incorrect game log attachment on Android ([ #743 ] ( https://github.com/getsentry/sentry-unreal/pull/743 ) )
23
23
- Fix assertion during screenshot capturing in a thread that can't use Slate ([ #756 ] ( https://github.com/getsentry/sentry-unreal/pull/756 ) )
24
+ - Fix invalid native method name for Android ` User ` class ([ #800 ] ( https://github.com/getsentry/sentry-unreal/pull/800 ) )
24
25
- Fix stack overflow when calling ` beforeSend ` during object post-loading on mobile ([ #782 ] ( https://github.com/getsentry/sentry-unreal/pull/782 ) )
25
26
- Fix invalid syntax in symbol upload batch script ([ #801 ] ( https://github.com/getsentry/sentry-unreal/pull/801 ) )
26
27
Original file line number Diff line number Diff line change @@ -27,8 +27,8 @@ void SentryUserAndroid::SetupClassMethods()
27
27
GetUsernameMethod = GetMethod (" getUsername" , " ()Ljava/lang/String;" );
28
28
SetIpAddressMethod = GetMethod (" setIpAddress" , " (Ljava/lang/String;)V" );
29
29
GetIpAddressMethod = GetMethod (" getIpAddress" , " ()Ljava/lang/String;" );
30
- SetDataMethod = GetMethod (" setOthers " , " (Ljava/util/Map;)V" );
31
- GetDataMethod = GetMethod (" getOthers " , " ()Ljava/util/Map;" );
30
+ SetDataMethod = GetMethod (" setData " , " (Ljava/util/Map;)V" );
31
+ GetDataMethod = GetMethod (" getData " , " ()Ljava/util/Map;" );
32
32
}
33
33
34
34
void SentryUserAndroid::SetEmail (const FString& email)
You can’t perform that action at this time.
0 commit comments