Skip to content

Commit 58425af

Browse files
authored
Fix Editor DSN check (#859)
1 parent c27b931 commit 58425af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugin-dev/Source/Sentry/Private/Apple/AppleSentrySubsystem.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ void FAppleSentrySubsystem::InitWithSettings(const USentrySettings* settings, US
4040
[SENTRY_APPLE_CLASS(SentrySDK) startWithConfigureOptions:^(SentryOptions *options) {
4141
options.dsn = settings->Dsn.GetNSString();
4242
#if WITH_EDITOR
43-
if(!settings->EditorDsn) {
43+
if(!settings->EditorDsn.IsEmpty()) {
4444
options.dsn = settings->EditorDsn.GetNSString();
4545
}
4646
#endif

0 commit comments

Comments
 (0)