Default tag id and additional IDs no longer return valid IDs.

Created on 10 January 2025, 3 months ago

Problem/Motivation

In #3450154 🐛 Missing GTM ID causes PHP warning: passing null to parameter #2 of preg_match deprecated in TagContainer.php Fixed , the patch added `=== 0` to two of the preg_match comparisons which essentially wrecked this functionality.
In our case, this fails in the js code that does this:

  if (additionalConfigInfo.length === 0) {
    gtag('config', config.tagId);
  } else {
    gtag('config', config.tagId, additionalConfigInfo);
  }

Because the `config.tagId` value is empty.

Steps to reproduce

This should be visible as soon as you configure google tag with the google analytics debugger chrome plugin.

Proposed resolution

Simply remove the `=== 0` in the comparison so this functionality works again like before.

🐛 Bug report
Status

Active

Version

2.0

Component

Code

Created by

🇧🇪Belgium RandalV

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

Production build 0.71.5 2024