From 62f664e61a31f7b8be395cd6ce575604c5b5e88c Mon Sep 17 00:00:00 2001 From: Alex Ryltsov Date: Sat, 22 Oct 2022 19:03:32 +0200 Subject: [PATCH] fix(launch-navigator): use currect handlers (#4385) --- .../plugins/launch-navigator/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/@awesome-cordova-plugins/plugins/launch-navigator/index.ts b/src/@awesome-cordova-plugins/plugins/launch-navigator/index.ts index 3a52fc28..9e9bb54a 100644 --- a/src/@awesome-cordova-plugins/plugins/launch-navigator/index.ts +++ b/src/@awesome-cordova-plugins/plugins/launch-navigator/index.ts @@ -322,8 +322,8 @@ export class LaunchNavigator extends AwesomeCordovaNativePlugin { * @returns {Promise} */ @Cordova({ - successIndex: 2, - errorIndex: 3, + successIndex: 1, + errorIndex: 2 }) navigate(destination: string | number[], options?: LaunchNavigatorOptions): Promise { return;