Version 1.0-beta v2
fixed sync
This commit is contained in:
parent
4a854045e0
commit
491a8a0ccb
@ -9,7 +9,7 @@ android {
|
|||||||
applicationId "ch.dissem.apps.abit"
|
applicationId "ch.dissem.apps.abit"
|
||||||
minSdkVersion 19
|
minSdkVersion 19
|
||||||
targetSdkVersion 23
|
targetSdkVersion 23
|
||||||
versionCode 2
|
versionCode 3
|
||||||
versionName "1.0-beta"
|
versionName "1.0-beta"
|
||||||
}
|
}
|
||||||
signingConfigs {
|
signingConfigs {
|
||||||
|
@ -42,7 +42,7 @@ public class Preferences {
|
|||||||
|
|
||||||
public static boolean useTrustedNode(Context ctx) {
|
public static boolean useTrustedNode(Context ctx) {
|
||||||
String trustedNode = getPreference(ctx, PREFERENCE_TRUSTED_NODE);
|
String trustedNode = getPreference(ctx, PREFERENCE_TRUSTED_NODE);
|
||||||
return trustedNode == null || trustedNode.trim().isEmpty();
|
return trustedNode != null && !trustedNode.trim().isEmpty();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user