We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
BugReporting.setInvocationEvents
1 parent 48a580b commit dbf740dCopy full SHA for dbf740d
CHANGELOG.md
@@ -1,3 +1,7 @@
1
+## Unreleased
2
+
3
+* Fixes an issue with BugReporting.setInvocationEvents on iOS that always sets the event to none.
4
5
## v11.0.0 (2022-07-20)
6
7
* Bumps Instabug native SDKs to v11
ios/Classes/InstabugFlutterPlugin.m
@@ -491,7 +491,7 @@ + (void)setEnabledAttachmentTypes:(NSNumber *)screenShot
491
*/
492
+ (void)setInvocationEvents:(NSArray *)invocationEventsArray {
493
NSDictionary *constants = [self constants];
494
- NSInteger invocationEvents = IBGInvocationEventNone;
+ NSInteger invocationEvents = 0;
495
for (NSString * invocationEvent in invocationEventsArray) {
496
invocationEvents |= ((NSNumber *) constants[invocationEvent]).integerValue;
497
}
0 commit comments