Fix typo fixed in instabug 7.0
This commit is contained in:
parent
44053a5fe6
commit
d600b559b3
|
@ -78,14 +78,14 @@ RCT_EXPORT_METHOD(setPreInvocationHandler:(RCTResponseSenderBlock)callBack) {
|
|||
|
||||
RCT_EXPORT_METHOD(setPostInvocationHandler:(RCTResponseSenderBlock)callBack) {
|
||||
if (callBack != nil) {
|
||||
[Instabug setPostInvocatioHandler:^(IBGDismissType dismissType, IBGReportType reportType) {
|
||||
[Instabug setPostInvocationHandler:^(IBGDismissType dismissType, IBGReportType reportType) {
|
||||
[self sendEventWithName:@"IBGpostInvocationHandler" body:@{
|
||||
@"dismissType": @(dismissType),
|
||||
@"reportType": @(reportType)
|
||||
}];
|
||||
}];
|
||||
} else {
|
||||
[Instabug setPostInvocatioHandler:nil];
|
||||
[Instabug setPostInvocationHandler:nil];
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue