Skip to content

Commit

Permalink
修复水区无法回复的bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Hs1r1us committed Feb 15, 2021
1 parent de2de41 commit 74c5282
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tgfc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ android {
minSdkVersion 14
targetSdkVersion 28
versionCode 27
versionName "1.4.1"
versionName "1.4.2"
}

buildTypes {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ private Request buildPostFormRequest(String url, Map<String, String> params, Obj
private boolean IsLions = false;
private String LionsUrlCheck(String url) {
String Result = url;
if (Result.contains("fid")) {
if (Result.contains("fid") && !Result.contains("fid=null")) {
if (Result.contains("fid=25"))
IsLions = true;
else
Expand Down

0 comments on commit 74c5282

Please sign in to comment.