Version 1.0-beta v2

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

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();
}
/**