Skip to content
Snippets Groups Projects
Commit aa780e96 authored by cyberta's avatar cyberta Committed by cyberta
Browse files

revert removal of certificate check in Provider setup v3

parent c62e3388
No related branches found
No related tags found
1 merge request!324Release 1.5.0RC1
......@@ -244,6 +244,18 @@ public class ProviderApiManagerV3 extends ProviderApiManagerBase implements IPro
return currentDownload;
}
currentDownload = validateProviderDetails(provider);
//provider certificate invalid
if (currentDownload.containsKey(ERRORS)) {
currentDownload.putParcelable(PROVIDER_KEY, provider);
return currentDownload;
}
//no provider json or certificate available
if (currentDownload.containsKey(BROADCAST_RESULT_KEY) && !currentDownload.getBoolean(BROADCAST_RESULT_KEY)) {
resetProviderDetails(provider);
}
if (!provider.hasDefinition()) {
currentDownload = getAndSetProviderJson(provider);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment