We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4a23f5 commit 34c0c31Copy full SHA for 34c0c31
src/InterSpec.cpp
@@ -4195,7 +4195,13 @@ void InterSpec::loadStateFromDb( Wt::Dbo::ptr<UserState> entry )
4195
if( (entry->shownDisplayFeatures & UserState::kShowingDetectionSens)
4196
&& !entry->detectionSensitivityToolUri.empty() )
4197
{
4198
- showDetectionLimitTool( entry->detectionSensitivityToolUri );
+ try
4199
+ {
4200
+ showDetectionLimitTool( entry->detectionSensitivityToolUri );
4201
+ }catch( std::exception &e )
4202
4203
+ cerr << "Failed to set detection limit tool state with error: " << e.what() << endl;
4204
+ }
4205
}//if( m_detectionLimitWindow )
4206
4207
if( (entry->shownDisplayFeatures & UserState::kShowingSimpleMda)
0 commit comments