You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have two DPLRouteHandler's registered for the same URL path (say /mypath)
My first route handler returns false for shouldHandleDeepLink if there is a query parameter ( e.g. /mypath?skip_first)
In this case I'd like my second DPLRouteHandler to handle this case.
Issue:
Currently - [DPLDeepLinkRouter handleURL:(NSURL *)url withCompletion:(DPLRouteCompletionBlock)completionHandler] stops looking for matches after the first match returns false for shouldHandleDeepLink.
Ideally it would keep looking in this case until it finds a match which handles the link (or runs out of routes).