summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorParménides GV <parmegv@sdf.org>2013-08-14 09:52:35 +0200
committerParménides GV <parmegv@sdf.org>2013-08-14 09:52:35 +0200
commita21b15ec7ac4c9eb2ce73e370cdce25359491634 (patch)
tree9abfc8e67079d4c5916cbc1beca01fb6234af62c
parent867315bf6030765ca06898f7c564f22ced7da9d3 (diff)
Assets providers have danger_on "false".
-rw-r--r--src/se/leap/leapclient/ConfigurationWizard.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/se/leap/leapclient/ConfigurationWizard.java b/src/se/leap/leapclient/ConfigurationWizard.java
index 4ddac803..05338bf4 100644
--- a/src/se/leap/leapclient/ConfigurationWizard.java
+++ b/src/se/leap/leapclient/ConfigurationWizard.java
@@ -216,7 +216,7 @@ implements ProviderListFragment.Callbacks, NewProviderDialog.NewProviderDialogIn
boolean custom = false;
provider_name = url_filepath.subSequence(0, url_filepath.indexOf(".")).toString();
if(ProviderListContent.ITEMS.isEmpty()) //TODO I have to implement a way of checking if a provider new or is already present in that ITEMS list
- ProviderListContent.addItem(new ProviderItem(provider_name, asset_manager.open(url_files_folder + "/" + url_filepath), custom, true)); // By default, it trusts the provider
+ ProviderListContent.addItem(new ProviderItem(provider_name, asset_manager.open(url_files_folder + "/" + url_filepath), custom, false));
loaded_preseeded_providers = true;
}
} catch (IOException e) {