Skip to content

Commit cb91561

Browse files
committedJun 5, 2024
update if check for new access token redirect
1 parent 8aefe16 commit cb91561

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed
 

‎android/app/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ android {
118118
applicationId "dev.vasc.vshop2"
119119
minSdkVersion rootProject.ext.minSdkVersion
120120
targetSdkVersion rootProject.ext.targetSdkVersion
121-
versionCode 53
121+
versionCode 54
122122
versionName npmVersion
123123
}
124124

‎ios/vshop_mobile.xcodeproj/project.pbxproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@
533533
CODE_SIGN_ENTITLEMENTS = vshop_mobile/vshop_mobile.entitlements;
534534
CODE_SIGN_IDENTITY = "Apple Development";
535535
CODE_SIGN_STYLE = Automatic;
536-
CURRENT_PROJECT_VERSION = 18;
536+
CURRENT_PROJECT_VERSION = 19;
537537
DEVELOPMENT_TEAM = H4F94U74J4;
538538
ENABLE_BITCODE = NO;
539539
INFOPLIST_FILE = vshop_mobile/Info.plist;
@@ -542,7 +542,7 @@
542542
"$(inherited)",
543543
"@executable_path/Frameworks",
544544
);
545-
MARKETING_VERSION = 2.7.3;
545+
MARKETING_VERSION = 2.7.4;
546546
OTHER_LDFLAGS = (
547547
"$(inherited)",
548548
"-ObjC",
@@ -566,15 +566,15 @@
566566
CODE_SIGN_ENTITLEMENTS = vshop_mobile/vshop_mobile.entitlements;
567567
CODE_SIGN_IDENTITY = "Apple Development";
568568
CODE_SIGN_STYLE = Automatic;
569-
CURRENT_PROJECT_VERSION = 18;
569+
CURRENT_PROJECT_VERSION = 19;
570570
DEVELOPMENT_TEAM = H4F94U74J4;
571571
INFOPLIST_FILE = vshop_mobile/Info.plist;
572572
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
573573
LD_RUNPATH_SEARCH_PATHS = (
574574
"$(inherited)",
575575
"@executable_path/Frameworks",
576576
);
577-
MARKETING_VERSION = 2.7.3;
577+
MARKETING_VERSION = 2.7.4;
578578
OTHER_LDFLAGS = (
579579
"$(inherited)",
580580
"-ObjC",

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vshop_mobile",
3-
"version": "2.7.3",
3+
"version": "2.7.4",
44
"private": true,
55
"scripts": {
66
"android": "react-native run-android",

‎src/screens/ReAuth.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export default function ReAuthScreen() {
4646
}) => {
4747
if (!newNavState.url) return;
4848

49-
if (newNavState.url.startsWith("https://playvalorant.com/opt_in")) {
49+
if (newNavState.url.includes("access_token=")) {
5050
const accessToken = getAccessTokenFromUri(newNavState.url);
5151
try {
5252
const region =

‎src/screens/Wizard.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export default function WizardScreen() {
5353
}) => {
5454
if (!newNavState.url) return;
5555

56-
if (newNavState.url.startsWith("https://playvalorant.com/opt_in")) {
56+
if (newNavState.url.includes("access_token=")) {
5757
const accessToken = getAccessTokenFromUri(newNavState.url);
5858
try {
5959
setLoading(t("fetching.version"));

0 commit comments

Comments
 (0)
Please sign in to comment.