Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## XX.XX.XX
* Mitigated an issue where closing surveys that were presented via journeys was triggering an exception.

## 25.4.9
* Added a new config option `disableViewRestartForManualRecording()` to disable auto close/restart behavior of manual views on app background/foreground actions.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ protected void onCreate(Bundle savedInstanceState) {
currentOrientation = intent.getIntExtra(ORIENTATION, 0);
configLandscape = (TransparentActivityConfig) intent.getSerializableExtra(CONFIGURATION_LANDSCAPE);
configPortrait = (TransparentActivityConfig) intent.getSerializableExtra(CONFIGURATION_PORTRAIT);

Log.v(Countly.TAG, "[TransparentActivity] onCreate, orientation: " + currentOrientation);
Log.v(Countly.TAG, "[TransparentActivity] onCreate, configLandscape x: ["
+ configLandscape.x
Expand Down Expand Up @@ -328,7 +329,9 @@ private boolean widgetUrlAction(String url, WebView view) {
close(query);

ModuleFeedback.CountlyFeedbackWidget widgetInfo = (ModuleFeedback.CountlyFeedbackWidget) getIntent().getSerializableExtra(WIDGET_INFO);
Countly.sharedInstance().moduleFeedback.reportFeedbackWidgetCancelButton(widgetInfo);
if (widgetInfo != null) {
Countly.sharedInstance().moduleFeedback.reportFeedbackWidgetCancelButton(widgetInfo);
}
}
}

Expand Down
Loading