File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
Branch-TestBed/Branch-SDK-Tests Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -143,7 +143,8 @@ - (void) testStandardBlackList {
143143 __unsafe_unretained NSDictionary *dictionary = nil ;
144144 [invocation getArgument: &dictionary atIndex: 2 ];
145145
146- NSString * link = dictionary[@" universal_link_url" ];
146+ NSLog (@" d: %@ " , dictionary);
147+ NSString * link = dictionary[@" external_intent_uri" ];
147148 NSString *pattern = @" ^(?i)((http|https):\\ /\\ /).*[\\ /|?|#].*\\ b(password|o?auth|o?auth.?token|access|access.?token)\\ b" ;
148149 NSLog (@" \n Link: '%@ '\n Pattern: '%@ '\n ." , link, pattern);
149150 if ([link isEqualToString: pattern]) {
@@ -176,7 +177,7 @@ - (void) testUserBlackList {
176177 __unsafe_unretained NSDictionary *dictionary = nil ;
177178 [invocation getArgument: &dictionary atIndex: 2 ];
178179
179- NSString * link = dictionary[@" universal_link_url " ];
180+ NSString * link = dictionary[@" external_intent_uri " ];
180181 NSString *pattern = @" \\ /bob\\ /" ;
181182 NSLog (@" \n Link: '%@ '\n Pattern: '%@ '\n ." , link, pattern);
182183
Original file line number Diff line number Diff line change 11Branch iOS SDK Change Log
22
33- v0.24.2
4- * _ * Master Release* _ - April 19 , 2018
4+ * _ * Master Release* _ - April 20 , 2018
55 * Fixed a bug where a opening a blacklisted URI scheme would cause an HTTP status 400 for each
66 Branch open until the app was opened with a universal link (DEVEX-341).
77 - After opening a blacklisted scheme, the app would not open other schemes until a https URL was opened.
88 - Added code that clears the blacklisted URL after sending the regex pattern to the server.
9+ - The matching regex is now sent in ` external_intent_uri ` rather than ` universal_link_url ` .
910 - Removed an old NSLog from debugging.
1011 * Added ` BNCProductCategoryAllCategories(void) ` and ` BNCCurrencyAllCurrencies(void) ` convenience functions.
1112 * Updated Info.plist URI Filter and clarified documentation (DEVEX-343).
You can’t perform that action at this time.
0 commit comments