From be41fe5f482b127bbc1af78ffa8436f8fdd3ce06 Mon Sep 17 00:00:00 2001 From: Ivan Tustanivskyi Date: Mon, 28 Apr 2025 17:18:07 +0300 Subject: [PATCH] Remove `Epic Account Id` from extra crash context --- .../CrashReporter/GenericPlatformSentryCrashContext.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/plugin-dev/Source/Sentry/Private/GenericPlatform/CrashReporter/GenericPlatformSentryCrashContext.cpp b/plugin-dev/Source/Sentry/Private/GenericPlatform/CrashReporter/GenericPlatformSentryCrashContext.cpp index 5ef27a37b..7edbd6356 100644 --- a/plugin-dev/Source/Sentry/Private/GenericPlatform/CrashReporter/GenericPlatformSentryCrashContext.cpp +++ b/plugin-dev/Source/Sentry/Private/GenericPlatform/CrashReporter/GenericPlatformSentryCrashContext.cpp @@ -55,12 +55,6 @@ void FGenericPlatformSentryCrashContext::Apply(TSharedPtr Scope) ContextValues.Add("Memory Stats Page Size", FString::FromInt(SessionContext.MemoryStats.PageSize)); ContextValues.Add("Memory Stats Total Virtual", FString::Printf(TEXT("%lld"), SessionContext.MemoryStats.TotalVirtual)); - if(Settings->SendDefaultPii) - { - ContextValues.Add("Epic Account Id", SessionContext.EpicAccountId); - ContextValues.Add("Login Id", SessionContext.LoginIdStr); - } - Scope->SetContext(TEXT("Crash Info"), ContextValues); }