File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -114,12 +114,18 @@ Branch.prototype.setCookieBasedMatching = function setCookieBasedMatching(
114
114
: null ;
115
115
} ;
116
116
117
+ //DEPRECATED
117
118
Branch . prototype . delayInitToCheckForSearchAds = function delayInitToCheckForSearchAds (
118
119
isEnabled
119
120
) {
120
- var value = typeof isEnabled !== "boolean" ? false : isEnabled ;
121
+ // stub call from known issue calling it from JS
122
+ return new Promise ( function promise ( resolve , reject ) {
123
+ resolve ( false ) ;
124
+ } ) ;
125
+
126
+ // var value = typeof isEnabled !== "boolean" ? false : isEnabled;
121
127
122
- return execute ( "delayInitToCheckForSearchAds" , [ value ] ) ;
128
+ // return execute("delayInitToCheckForSearchAds", [value]);
123
129
} ;
124
130
125
131
Branch . prototype . getFirstReferringParams = function getFirstReferringParams ( ) {
You can’t perform that action at this time.
0 commit comments