Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
alexs-mparticle committed Jan 22, 2024
1 parent 1cb7f43 commit 2a736a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mp-instance.js
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ export default function mParticleInstance(instanceName) {
if (queued) return;

self._Store.SDKConfig.appVersion = version;
if (self.Store.SDKConfig.usePersistence) {
if (self._Store.SDKConfig.usePersistence) {
self._Persistence.update();
}
};
Expand All @@ -250,7 +250,7 @@ export default function mParticleInstance(instanceName) {

// debugger;
// TODO: Replace this with Store.setDeviceId
if (self.Store.SDKConfig.usePersistence) {
if (self._Store.SDKConfig.usePersistence) {
this._Persistence.setDeviceId(guid);
}
};
Expand Down

0 comments on commit 2a736a8

Please sign in to comment.