diff options
author | Parménides GV <parmegv@sdf.org> | 2013-02-04 16:35:28 +0100 |
---|---|---|
committer | Parménides GV <parmegv@sdf.org> | 2013-02-04 16:35:28 +0100 |
commit | d2bd18ef560d95974117604af899b3a9fcc16dab (patch) | |
tree | 96831726c943bcccb104584d4748c5972a43654e /src/se/leap/leapclient/Dashboard.java | |
parent | 7b9e22e765a1e5eda05ad121684e63c20ff5f049 (diff) |
Created ConfigHelper with static information such as sharedprefs keys,
the saveSharedPrefs method and an unimplemented rescueFromJSONException.
Next step: managing HttpsURLConnection for the
CertPathValidatorException.
Diffstat (limited to 'src/se/leap/leapclient/Dashboard.java')
-rw-r--r-- | src/se/leap/leapclient/Dashboard.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/se/leap/leapclient/Dashboard.java b/src/se/leap/leapclient/Dashboard.java index f81c37a7..84ddab27 100644 --- a/src/se/leap/leapclient/Dashboard.java +++ b/src/se/leap/leapclient/Dashboard.java @@ -37,8 +37,7 @@ public class Dashboard extends Activity { preferences = getPreferences(MODE_PRIVATE); // FIXME provider data!! get parmegv's work so we can stop (or lessen) faking it - //TODO In my emulator, I always get that contains TRUE. Don't know why, but I've been testing without the "!". - if (!preferences.contains("provider") ) + if (preferences.contains("provider") ) startActivity(new Intent(this, ProviderListActivity.class)); // Get our provider |