utag.view call doesn't cause allTags extension (encrypt sensitive data extension) to run on SPA site

Silver Contributor
Silver Contributor

I have the encrypt sensitive data extension scoped to all tags, but when I call utag.view(), with a breakpoint right where the extension code runs, I don't hit that break point. 
On the old version of the site - I DO see the breakpoint gets hit when I call utag.view(). 

Any idea what could be happening? I would expect AllTags extensions to run every time utag.view() is called. 

the specific setting is allTags - after load rules. 
Here's the code I'm setting a breakpoints in (at the conditional and body of the conditional)

  try {
                if (typeof b['customer_email_crypt'] != 'undefined' && b['customer_email_crypt'] != '') {
                    b['customer_email_crypt'] = utag.ut.md5.MD5(b['customer_email_crypt']).toString();
                }
            } catch (e) {}
        }
 

 

1 REPLY 1

utag.view call doesn't cause allTags extension (encrypt sensitive data extension) to run on SPA site

Silver Contributor
Silver Contributor

Turns out this was due to issues with other local environments running at the same time. disregard!

Public