Skip to content

Commit 0b2065e

Browse files
Merge pull request #316 from Countly/staging
Staging
2 parents 1b1453f + 9dce0ea commit 0b2065e

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

example/integration_test/experimental_tests/visibility_prev_names_recording_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ void main() {
6565
// when going to bg
6666
if (index == 2) {
6767
expect(queryParams['end_session']?[0], '1');
68-
expect(queryParams['session_duration']?[0], '2');
68+
expect(queryParams['session_duration']?[0], anyOf(['2', '3']));
6969
}
7070
if (index == 1) {
7171
var rqEvents = jsonDecode(queryParams['events']![0]);

ios/Classes/CountlyFlutterPlugin.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1058,7 +1058,7 @@ - (void)handleMethodCall:(FlutterMethodCall *)call result:(FlutterResult)result
10581058
});
10591059
} else if ([@"getAvailableFeedbackWidgets" isEqualToString:call.method]) {
10601060
dispatch_async(dispatch_get_main_queue(), ^{
1061-
[Countly.sharedInstance getFeedbackWidgets:^(NSArray<CountlyFeedbackWidget *> *_Nonnull feedbackWidgets, NSError *_Nonnull error) {
1061+
[Countly.sharedInstance.feedback getAvailableFeedbackWidgets:^(NSArray<CountlyFeedbackWidget *> *feedbackWidgets, NSError *error) {
10621062
feedbackWidgetList = [NSArray arrayWithArray:feedbackWidgets];
10631063
NSMutableArray *feedbackWidgetsArray = [NSMutableArray arrayWithCapacity:feedbackWidgets.count];
10641064
for (CountlyFeedbackWidget *retrievedWidget in feedbackWidgets) {

ios/Classes/CountlyiOS/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
* Mitigated an issue where visibility could have been wrongly assigned if a view was closed while going to background. (Experimental!)
55
* Mitigated an issue where the user provided URLSessionConfiguration was not applied to direct requests
6+
* Mitigated an issue where a concurrent modification error could have happen when starting multiple stopped views
67
* Mitigated an issue that parsing internal content event segmentation.
78

89
## 24.7.7

0 commit comments

Comments
 (0)