Skip to content

Commit

Permalink
Include dist
Browse files Browse the repository at this point in the history
  • Loading branch information
rmi22186 committed May 2, 2024
1 parent edc7067 commit 2f551bf
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
7 changes: 5 additions & 2 deletions dist/BrazeKit.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -9946,10 +9946,13 @@ var constructor = function () {
braze.addSdkMetadata(['mp']);
primeBrazeWebPush();

if (forwarderSettings.userIdentificationType === 'MPID' && mParticle.Identity != null && mParticle.Identity.getCurrentUser().getMPID() != null) {
if (
mParticle.Identity != null &&
mParticle.Identity.getCurrentUser().getMPID() != null
) {
onUserIdentified(mParticle.Identity.getCurrentUser());
}

openSession(forwarderSettings);
}

Expand Down
7 changes: 5 additions & 2 deletions dist/BrazeKit.iife.js
Original file line number Diff line number Diff line change
Expand Up @@ -9946,10 +9946,13 @@ var mpBrazeKitV4 = (function (exports) {
braze.addSdkMetadata(['mp']);
primeBrazeWebPush();

if (forwarderSettings.userIdentificationType === 'MPID' && mParticle.Identity != null && mParticle.Identity.getCurrentUser().getMPID() != null) {
if (
mParticle.Identity != null &&
mParticle.Identity.getCurrentUser().getMPID() != null
) {
onUserIdentified(mParticle.Identity.getCurrentUser());
}

openSession(forwarderSettings);
}

Expand Down

0 comments on commit 2f551bf

Please sign in to comment.