MOBILE-3401 core: Fix invalid site URL in iOS when clicking links

This is caused by a bug in InAppBrowser plugin. Even with the IAB fix, the handleOpenURL function is called if there is no app to handle the URL so we'll need this check anyway
main
Dani Palou 2020-05-21 12:56:50 +02:00
parent acb406757a
commit 82add048f0
1 changed files with 5 additions and 0 deletions

View File

@ -191,6 +191,11 @@ export class MoodleMobileApp implements OnInit {
return;
}
if (!this.urlSchemesProvider.isCustomURL(url)) {
// Not a custom URL, ignore.
return;
}
this.logger.debug('App launched by URL ', url);
this.lastUrls[url] = Date.now();