Skip to content

Commit e85034a

Browse files
Update rnd and appid params
1 parent ccd6f40 commit e85034a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

react-native-userreport-sdk.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,10 +107,10 @@ const fireTrackingPixel = async (trackingCode, consentString) => {
107107

108108
const path = `https://${domain}/hit.gif`;
109109
const params = `?t=${encodeURIComponent(trackingCode)}` // eslint-disable-line prefer-template
110-
+ `&r=${random}`
110+
+ `&rnd=${random}`
111111
+ (!useAnonymousTracking && idfa ? `&d=${encodeURIComponent(idfa)}` : '')
112112
+ (!useAnonymousTracking && idfv ? `&idfv=${encodeURIComponent(idfv)}` : '')
113-
+ `&med=${encodeURIComponent(bundleId)}`
113+
+ `&appid=${encodeURIComponent(bundleId)}`
114114
+ `&os=${encodeURIComponent(systemName)}`
115115
+ `&osv=${encodeURIComponent(systemVersion)}`
116116
+ `&dn=${encodeURIComponent(deviceName)}`

0 commit comments

Comments
 (0)