Skip to content

Commit ef0fbb8

Browse files
committed
bug fix...
1 parent 825542d commit ef0fbb8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/main/java/com/yyxx/wechatfp/util/Config.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public void setLicenseAgree(boolean agree) {
9090
public boolean getLicenseAgree() {
9191
boolean agree = mCache.mainAppSharedPreferences.getBoolean("license_agree", false);
9292
if (!agree) {
93-
mCache.sharedPreferences.getBoolean("license_agree", false);
93+
agree = mCache.sharedPreferences.getBoolean("license_agree", false);
9494
}
9595
return agree;
9696
}

0 commit comments

Comments
 (0)