IonicDeepLinkPlugin461520374: typeError: route.split не является функцией

//This issue is related to one line of code that appears to be incorrect in deeplinks.js. as @pataar said it's from #243
// The line in deeplinks.js:
var matchedParams = self.routeMatch(pathData, realPath);
// should be:
var matchedParams = self.routeMatch(targetPath, realPath);
GutoTrosla