Skip to content

Commit

Permalink
Merge pull request #200 from tonkeeper/fix/deeplink-transafer-withgoback
Browse files Browse the repository at this point in the history
fix: transfer deeplink withGoBack
  • Loading branch information
bogoslavskiy authored Dec 29, 2022
2 parents 3cb04b8 + db7a17e commit 2d6af4e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,8 @@ android {
applicationId 'com.ton_keeper'
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 261
versionName "2.8.0"
versionCode 262
versionName "2.8.1"
buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString()
missingDimensionStrategy 'react-native-camera', 'general'

Expand Down
8 changes: 4 additions & 4 deletions ios/ton_keeper.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1174,7 +1174,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = ton_keeper/ton_keeper.entitlements;
CURRENT_PROJECT_VERSION = 261;
CURRENT_PROJECT_VERSION = 262;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = CT523DK2KC;
ENABLE_BITCODE = NO;
Expand All @@ -1184,7 +1184,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 2.8.0;
MARKETING_VERSION = 2.8.1;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
Expand All @@ -1209,7 +1209,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = ton_keeper/ton_keeper.entitlements;
CURRENT_PROJECT_VERSION = 261;
CURRENT_PROJECT_VERSION = 262;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = CT523DK2KC;
INFOPLIST_FILE = ton_keeper/SupportingFiles/Info.plist;
Expand All @@ -1218,7 +1218,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 2.8.0;
MARKETING_VERSION = 2.8.1;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
Expand Down
3 changes: 2 additions & 1 deletion src/navigation/hooks/useDeeplinkingResolvers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ export function useDeeplinkingResolvers() {
modalName: ModalName.CONFIRM_SENDING,
key: 'CONFIRM_SENDING',
...options,
withGoBack: resolveParams.withGoBack ?? false
});
}
},
Expand All @@ -189,7 +190,7 @@ export function useDeeplinkingResolvers() {
}
openSend(query.jetton, address, comment, resolveParams.withGoBack, true);
} else {
openSend(currency, address, comment);
openSend(currency, address, comment, false);
}
});

Expand Down

0 comments on commit 2d6af4e

Please sign in to comment.