File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change
1
+ ## master
2
+
3
+ * Fixes an issue with iOS invocation events causing the welcome message not to show.
4
+
1
5
## v9.1.7 (2020-10-01)
2
6
3
7
* Adds support for the Azerbaijani locale
Original file line number Diff line number Diff line change @@ -68,10 +68,13 @@ + (void)startWithToken:(NSString *)token invocationEvents:(NSArray*)invocationEv
68
68
}
69
69
70
70
NSDictionary *constants = [self constants ];
71
- NSInteger invocationEvents = IBGInvocationEventNone ;
71
+ NSInteger invocationEvents = 0 ;
72
72
for (NSString * invocationEvent in invocationEventsArray) {
73
73
invocationEvents |= ((NSNumber *) constants[invocationEvent]).integerValue ;
74
74
}
75
+ if (invocationEvents == 0 ) {
76
+ invocationEvents = IBGInvocationEventNone;
77
+ }
75
78
[Instabug startWithToken: token invocationEvents: invocationEvents];
76
79
}
77
80
You can’t perform that action at this time.
0 commit comments