Skip to content

Commit 3b54e3f

Browse files
committed
Removing SIGPIPE
1 parent 925446b commit 3b54e3f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

ios/ReactNativeExceptionHandler.m

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,8 @@ - (dispatch_queue_t)methodQueue
7373
signal(SIGSEGV, SignalHandler);
7474
signal(SIGFPE, SignalHandler);
7575
signal(SIGBUS, SignalHandler);
76-
signal(SIGPIPE, SignalHandler);
76+
//signal(SIGPIPE, SignalHandler);
77+
//Removing SIGPIPE as per https://github.com/master-atul/react-native-exception-handler/issues/32
7778
NSLog(@"REGISTERED RN EXCEPTION HANDLER");
7879
}
7980

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-exception-handler",
3-
"version": "2.6.2",
3+
"version": "2.7.0",
44
"description": "A react native module that lets you to register a global error handler that can capture fatal/non fatal uncaught exceptions.",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)