From 7a093efab95400b7c3c578368b34e2d66c6d49c2 Mon Sep 17 00:00:00 2001 From: Jamie Berghmans Date: Thu, 2 Jan 2020 01:16:40 +0100 Subject: [PATCH] Fixed crashing issue when more or less then 1 photo is selected --- Tweak.x | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Tweak.x b/Tweak.x index 3113f27..f2ef19e 100644 --- a/Tweak.x +++ b/Tweak.x @@ -1,5 +1,6 @@ @interface UIActivityContentViewController -- (void) setAirDropSlots:(NSArray*)arg1; +//- (void) setAirDropSlots:(NSArray*)arg1; +- (void) updateContentWithPeopleProxies:(id)arg1 shareProxies:(id)arg2 actionProxies:(id)arg3 activitiesByUUID:(id)arg4 nearbyCountSlotID:(id)arg5 animated:(BOOL)arg6; @end @interface _UIActivityUserDefaultsViewController @@ -17,8 +18,13 @@ %hook UIActivityContentViewController -- (void) setAirDropSlots:(NSArray*)arg1 { +/*- (void) setAirDropSlots:(NSArray*)arg1 { + NSLog(@"NOCSHARE - Prevented AirDropSlots!"); //Do nothing +}*/ + +- (void) updateContentWithPeopleProxies:(NSArray*)arg1 shareProxies:(NSArray*)arg2 actionProxies:(NSArray*)arg3 activitiesByUUID:(NSMutableDictionary*)arg4 nearbyCountSlotID:(id)arg5 animated:(BOOL)arg6 { + %orig([NSMutableArray new], arg2, arg3, arg4, arg5, arg6); } %end