Version 1.0-beta v2

fixed sync
This commit is contained in:
Christian Basler 2016-01-22 09:22:43 +01:00
parent 4a854045e0
commit 491a8a0ccb
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ android {
applicationId "ch.dissem.apps.abit"
minSdkVersion 19
targetSdkVersion 23
versionCode 2
versionCode 3
versionName "1.0-beta"
}
signingConfigs {

View File

@ -42,7 +42,7 @@ public class Preferences {
public static boolean useTrustedNode(Context ctx) {
String trustedNode = getPreference(ctx, PREFERENCE_TRUSTED_NODE);
return trustedNode == null || trustedNode.trim().isEmpty();
return trustedNode != null && !trustedNode.trim().isEmpty();
}
/**