Merged PR 3048: enable telemetry when cookie consent is not required

Enable telemetry when cookie consent is not required.
This commit is contained in:
Chris Lovett 2020-09-16 15:11:32 +00:00 коммит произвёл Pantazis Deligiannis
Родитель eafb9ce25f
Коммит 09b51d9163
1 изменённых файлов: 3 добавлений и 5 удалений

Просмотреть файл

@ -35,12 +35,10 @@ function wcp_ready(err, _siteConsent){
function onConsentChanged() {
var userConsent = siteConsent.getConsentFor(WcpConsent.consentCategories.Analytics);
if (!siteConsent.isConsentRequired){
// force the dialog just for testing...
// todo: remove this when we are done testing...
siteConsent.manageConsent();
if (!siteConsent.isConsentRequired) {
enableTelemetry();
}
else if(userConsent) {
else if (userConsent) {
enableTelemetry();
}
else {