diff options
| author | Parménides GV <parmegv@sdf.org> | 2013-04-15 17:52:19 +0200 | 
|---|---|---|
| committer | Parménides GV <parmegv@sdf.org> | 2013-04-15 17:52:19 +0200 | 
| commit | c3d73145c746419d23ec1a337b62506c4ef70fcf (patch) | |
| tree | b00edd54b8b117592c4933aa84f97307938c5aea | |
| parent | bb4e2e8f16f79c59806a017d8f37e2bdd10a4e87 (diff) | |
Added one "else if" that I missed during merge.
Next step: understand why ca.cert from bitmask is not being downloaded
correctly.
| -rw-r--r-- | src/se/leap/leapclient/ConfigurationWizard.java | 3 | ||||
| -rw-r--r-- | src/se/leap/leapclient/LeapHttpClient.java | 1 | ||||
| -rw-r--r-- | src/se/leap/leapclient/ProviderAPI.java | 2 | 
3 files changed, 3 insertions, 3 deletions
| diff --git a/src/se/leap/leapclient/ConfigurationWizard.java b/src/se/leap/leapclient/ConfigurationWizard.java index 5b93cbb..a61acfa 100644 --- a/src/se/leap/leapclient/ConfigurationWizard.java +++ b/src/se/leap/leapclient/ConfigurationWizard.java @@ -17,7 +17,6 @@ import android.app.Fragment;  import android.app.FragmentManager;
  import android.app.FragmentTransaction;
  import android.content.Intent;
 -import android.content.SharedPreferences;
  import android.content.res.AssetManager;
  import android.os.Bundle;
  import android.os.Handler;
 @@ -58,7 +57,7 @@ public class ConfigurationWizard extends Activity          setContentView(R.layout.activity_configuration_wizard);
 -        ConfigHelper.setSharedPreferences(getSharedPreferences(ConfigHelper.PREFERENCES_KEY,MODE_PRIVATE));
 +        ConfigHelper.setSharedPreferences(getSharedPreferences(ConfigHelper.PREFERENCES_KEY, MODE_PRIVATE));
          loadPreseededProviders();
 diff --git a/src/se/leap/leapclient/LeapHttpClient.java b/src/se/leap/leapclient/LeapHttpClient.java index 51b76b2..d1908c3 100644 --- a/src/se/leap/leapclient/LeapHttpClient.java +++ b/src/se/leap/leapclient/LeapHttpClient.java @@ -1,6 +1,5 @@  package se.leap.leapclient; -import java.io.InputStream;  import java.security.KeyStore;  import org.apache.http.conn.ClientConnectionManager; diff --git a/src/se/leap/leapclient/ProviderAPI.java b/src/se/leap/leapclient/ProviderAPI.java index 6b09eb9..ec131aa 100644 --- a/src/se/leap/leapclient/ProviderAPI.java +++ b/src/se/leap/leapclient/ProviderAPI.java @@ -48,6 +48,8 @@ public class ProviderAPI extends IntentService {  				receiver.send(ConfigHelper.INCORRECTLY_DOWNLOADED_JSON_FILES, Bundle.EMPTY);  			else  				receiver.send(ConfigHelper.CORRECTLY_DOWNLOADED_JSON_FILES, Bundle.EMPTY); +		} +		else if ((task = task_for.getBundleExtra(ConfigHelper.downloadNewProviderDotJSON)) != null) {  			if(downloadJsonFilesBundleExtra(task))  				receiver.send(ConfigHelper.CORRECTLY_DOWNLOADED_JSON_FILES, Bundle.EMPTY);  			else | 
