diff --git a/CHANGELOG.md b/CHANGELOG.md index ce7c3b076..1923bb918 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ - Bump Instabug iOS SDK to v12.2.0 ([#406](https://github.com/Instabug/Instabug-Flutter/pull/406)). [See release notes](https://github.com/instabug/instabug-ios/releases/tag/12.2.0). - Bump Instabug Android SDK to v12.2.0 ([#405](https://github.com/Instabug/Instabug-Flutter/pull/405)). [See release notes](https://github.com/Instabug/Instabug-Android/releases/tag/v12.2.0). +### Fixed + +- Re-enable screenshot capturing for Crash Reporting and Session Replay by removing redundant mapping ([#407](https://github.com/Instabug/Instabug-Flutter/pull/407)). + ## [12.1.0](https://github.com/Instabug/Instabug-Flutter/compare/v12.1.0...v11.14.0) ### Added diff --git a/lib/src/modules/instabug.dart b/lib/src/modules/instabug.dart index 8631f8c9d..2f75e4d4d 100644 --- a/lib/src/modules/instabug.dart +++ b/lib/src/modules/instabug.dart @@ -383,14 +383,6 @@ class Instabug { sessionReplayMode = all; } - // There's an issue with crashes repro steps with screenshots in the iOS SDK - // at the moment, so we'll map enabled with screenshots to enabled with no - // screenshots to avoid storing the images on disk if it's not needed until - // this issue is fixed in a future version. - if (IBGBuildInfo.I.isIOS && crashMode == ReproStepsMode.enabled) { - crashMode = ReproStepsMode.enabledWithNoScreenshots; - } - return _host.setReproStepsConfig( bugMode.toString(), crashMode.toString(),