diff --git a/parsers/CKAN/profiler/profilers/quality/measures/licensing.js b/parsers/CKAN/profiler/profilers/quality/measures/licensing.js index ea93595..7362b7c 100644 --- a/parsers/CKAN/profiler/profilers/quality/measures/licensing.js +++ b/parsers/CKAN/profiler/profilers/quality/measures/licensing.js @@ -13,6 +13,9 @@ function licensing(parent, dataset) { var isLicenseURLDereferenceable = false, licenseErrors = 0; var root = dataset.result ? dataset.result : dataset; + if (_.has(root, "license_information") && root.license_information) + profileTemplate.setQualityIndicatorScore("licensing", "QI.23", 0); + // Check if the dataset has a defined license URL if (_.has(root, "license_url") && root.license_url) { licensing.util.checkAddress(root.license_url, function(error, body, response) {