From 0645a93cac36503d16f43ba2027e7b4c8c86bebb Mon Sep 17 00:00:00 2001 From: mmacdougall Date: Tue, 10 Oct 2017 09:55:48 -0400 Subject: [PATCH] [iOS] Correct fishhook import Fixes #16039 --- Libraries/WebSocket/RCTReconnectingWebSocket.m | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Libraries/WebSocket/RCTReconnectingWebSocket.m b/Libraries/WebSocket/RCTReconnectingWebSocket.m index c0f0988cf72eb1..522eca0eabf44c 100644 --- a/Libraries/WebSocket/RCTReconnectingWebSocket.m +++ b/Libraries/WebSocket/RCTReconnectingWebSocket.m @@ -9,7 +9,12 @@ #import #import + +#if __has_include() +#import +#else #import +#endif #if __has_include() && defined(__IPHONE_OS_VERSION_MAX_ALLOWED) && __IPHONE_OS_VERSION_MAX_ALLOWED >= 100300 /* __IPHONE_10_3 */ #import