Skip to content

Commit

Permalink
check ssl corectly
Browse files Browse the repository at this point in the history
  • Loading branch information
Willy Enns committed Feb 28, 2015
1 parent 03f961f commit 6a36f5f
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -278,11 +278,14 @@ public void attemptLogin() {
mURL = mURLText.getText().toString();
mAccountname = mAccountnameText.getText().toString();
mUpdateInterval = mUpdateIntervalView.getText().toString();

if (mTrustCheckBox.isChecked()) {
mTrustAll = "false";
} else {
mTrustAll = "false";
mTrustAll = "true";
}


boolean cancel = false;
View focusView = null;

Expand Down

0 comments on commit 6a36f5f

Please sign in to comment.