Description of the issue:
Click tracking is blocked by Brave which seems great, but the code supplied by Google is:
function gtag_report_conversion(url) {
var callback = function () {
if (typeof(url) != 'undefined') {
window.location = url;
}
};
gtag('event', 'conversion', {
'send_to': 'xxx/xxx',
'event_callback': callback
});
return false;
}
The return false
at the end means that in Brave, the links no longer work at all. Now obviously the developer could change that to return true
, but most won’t and this will result in lots of broken links for Brave users.
Any thoughts?
Thanks!