Skip to content

Commit

Permalink
#805 - Removing delay of deeplink
Browse files Browse the repository at this point in the history
  • Loading branch information
graphefruit committed Oct 5, 2024
1 parent 9589365 commit 0c23970
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/services/intentHandler/intent-handler.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,9 @@ export class IntentHandlerService {

public attachOnHandleOpenUrl() {
App.addListener('appUrlOpen', (event: URLOpenListenerEvent) => {
console.log(event);
this.zone.run(() => {
this.uiLog.log('Deeplink matched ' + JSON.stringify(event));
this.uiLog.log('Deeplink matched ' + event.url);
setTimeout(() => {
this.handleDeepLink(event.url);
}, 2000);
this.handleDeepLink(event.url);
});
});
}
Expand Down

0 comments on commit 0c23970

Please sign in to comment.