From 0a9ed78b7daa9c3736b817d7d4f95c408867eb51 Mon Sep 17 00:00:00 2001 From: Ivan Tustanivskyi Date: Wed, 16 Aug 2023 16:08:18 +0300 Subject: [PATCH] Fix build error on Windows --- .../Source/Sentry/Private/Desktop/Transport/SentryTransport.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin-dev/Source/Sentry/Private/Desktop/Transport/SentryTransport.cpp b/plugin-dev/Source/Sentry/Private/Desktop/Transport/SentryTransport.cpp index 59f6687cc..24c3d86a4 100644 --- a/plugin-dev/Source/Sentry/Private/Desktop/Transport/SentryTransport.cpp +++ b/plugin-dev/Source/Sentry/Private/Desktop/Transport/SentryTransport.cpp @@ -58,7 +58,7 @@ void FSentryTransport::Send(sentry_envelope_t* envelope) const USentrySettings* Settings = FSentryModule::Get().GetSettings(); - const SentryDsnUrl DsnUrl(Settings->DsnUrl); + const SentryDsnUrl DsnUrl(Settings->Dsn); TSharedRef HttpRequest = FHttpModule::Get().CreateRequest();