From 49b8839fda3439edc31581527e84036e58f55f0f Mon Sep 17 00:00:00 2001
From: lpw <pengwei.li@gamehollywood.com>
Date: Tue, 26 Jan 2021 09:43:00 +0800
Subject: [PATCH] 3.9.2

---
 frameworks/FBSDKCoreKit.framework/Headers/FBSDKMutableCopying.h |   13 ++++++++++++-
 1 files changed, 12 insertions(+), 1 deletions(-)

diff --git a/frameworks/FBSDKCoreKit.framework/Headers/FBSDKMutableCopying.h b/frameworks/FBSDKCoreKit.framework/Headers/FBSDKMutableCopying.h
index 3fada94..7efaeeb 100644
--- a/frameworks/FBSDKCoreKit.framework/Headers/FBSDKMutableCopying.h
+++ b/frameworks/FBSDKCoreKit.framework/Headers/FBSDKMutableCopying.h
@@ -16,15 +16,22 @@
 // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
+#import "TargetConditionals.h"
+
+#if !TARGET_OS_TV
+
 #import <Foundation/Foundation.h>
 
-#import <FBSDKCoreKit/FBSDKCopying.h>
+#import "FBSDKCopying.h"
+
+NS_ASSUME_NONNULL_BEGIN
 
 /**
   Extension protocol for NSMutableCopying that adds the mutableCopy method, which is implemented on NSObject.
 
  NSObject<NSCopying, NSMutableCopying> implicitly conforms to this protocol.
  */
+NS_SWIFT_NAME(MutableCopying)
 @protocol FBSDKMutableCopying <FBSDKCopying, NSMutableCopying>
 
 /**
@@ -34,3 +41,7 @@
 - (id)mutableCopy;
 
 @end
+
+NS_ASSUME_NONNULL_END
+
+#endif

--
Gitblit v1.8.0