Fix sentry release tagging broken by 98d55ce8

This commit is contained in:
Marek Roszko 2023-01-29 11:51:03 -05:00
parent c3e9f53a29
commit 80b1826095
1 changed files with 1 additions and 1 deletions

View File

@ -327,7 +327,7 @@ void PGM_BASE::sentryInit()
sentry_options_set_symbolize_stacktraces( options, true );
sentry_options_set_auto_session_tracking( options, false );
if( IsNightlyVersion() )
if( !IsNightlyVersion() )
sentry_options_set_release( options, GetSemanticVersion().ToStdString().c_str() );
else
sentry_options_set_release( options, GetCommitHash().ToStdString().c_str() );