// Initialize Ezoic Identity window.ezoicIdentity = window.ezoicIdentity || {}; window.ezoicIdentity.queue = window.ezoicIdentity.queue || []; // Add identity handling logic to the Ezoic Identity queue window.ezoicIdentity.queue.push(function() { // Create the identity object let identity = {}; // Conditionally include userid and email if (typeof USERNAME !== 'undefined' && USERNAME) { identity.userid = USERNAME; // Add username if available } if (typeof PLAINTEXT_EMAIL !== 'undefined' && PLAINTEXT_EMAIL) { identity.email = PLAINTEXT_EMAIL; // Add email if available } // Ensure setIdentity is called only if identity object has properties if (Object.keys(identity).length > 0) { window.ezoicIdentity.setIdentity(identity); } });
Oklacarcollecto

Profile posts Latest activity Postings Post Areas About

  • There are no messages on Oklacarcollecto's profile yet.
  • Loading…
  • Loading…
  • Loading…
  • Loading…
Back
Top