diff --git a/lib/pangea/choreographer/controllers/it_controller.dart b/lib/pangea/choreographer/controllers/it_controller.dart index c2b4f3cd0..eb4a56c69 100644 --- a/lib/pangea/choreographer/controllers/it_controller.dart +++ b/lib/pangea/choreographer/controllers/it_controller.dart @@ -184,9 +184,12 @@ class ITController { e is TimeoutException ? SentryLevel.warning : SentryLevel.error, ); } - choreographer.errorService.setErrorAndLock( - ChoreoError(raw: e), - ); + + if (_willOpen) { + choreographer.errorService.setErrorAndLock( + ChoreoError(raw: e), + ); + } } finally { choreographer.stopLoading(); }