WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit 2dda47a

Browse files
committed
0.9.81
1 parent 3ea473a commit 2dda47a

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

android/app/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ android {
8080
applicationId = packageName
8181
minSdk = flutter.minSdkVersion
8282
targetSdk = 35
83-
versionCode = 10009800
84-
versionName = "0.9.80 isolate"
83+
versionCode = 10009801
84+
versionName = "0.9.81 predicate"
8585
ndk {
8686
abiFilters.addAll(arrayOf("armeabi-v7a", "arm64-v8a", "x86_64"))
8787
}

lib/constants.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import 'dart:io';
1818

1919
class Constants {
2020
static const String no_h = 'assets/images/h_long.jpg';
21-
static String tagName = "0.9.80";
21+
static String tagName = "0.9.81";
2222
static const isGooglePlay =
2323
bool.fromEnvironment("IS_GOOGLEPLAY", defaultValue: false);
2424
static int type = 0;

lib/er/leader.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,8 @@ class Leader {
269269
} catch (e) {}
270270
}
271271
if (link.queryParameters['id'] != null) {
272-
if (link.pathSegments.length == 1) {
272+
if (link.pathSegments.length == 1 &&
273+
link.pathSegments[0] == "info.php") {
273274
try {
274275
// https://www.pixiv.net/info.php?id=12907
275276
CustomTabPlugin.launch(link.toString());

0 commit comments

Comments
 (0)