0
Fixed

Bug: If GA property ID ends '-1' and is blocked, other properties that include this e.g. '-10' are also blocked.

Stu Bowker 5 years ago updated by Supermetrics Support Team 5 years ago 4

Looks like the regex used is open ended and acts as 'contains' rather than 'exactly matches' the property ID.

Answer

Answer
Fixed

I have found the culprit - it's fixed for the next release.
Of course, it was a regex issue where -1 could match -10... All I had to do was to add a \b (word boundary) to make sure it won't match partial property id's (and I fixed the same issue for GTM too).
Thank you!

Under review

I will double check this - the resulting regex is "99-99999-1(?!\\d)" which means the property id "not followed by a digit", so this should be prevented already.

Answer
Fixed

I have found the culprit - it's fixed for the next release.
Of course, it was a regex issue where -1 could match -10... All I had to do was to add a \b (word boundary) to make sure it won't match partial property id's (and I fixed the same issue for GTM too).
Thank you!