assign isn’t supported, so do a for loop
This commit is contained in:
parent
36d40cdec9
commit
beec60be47
|
@ -123,8 +123,10 @@ class Analytics {
|
|||
permanentProperties.group = group;
|
||||
}
|
||||
if (window.jitsiAnalyticsPermanentProperties) {
|
||||
permanentProperties.assign(
|
||||
window.jitsiAnalyticsPermanentProperties);
|
||||
for (var key in window.jitsiAnalyticsPermanentProperties) {
|
||||
permanentProperties[key]
|
||||
= window.jitsiAnalyticsPermanentProperties[key];
|
||||
}
|
||||
}
|
||||
|
||||
analytics.addPermanentProperties(permanentProperties);
|
||||
|
|
Loading…
Reference in New Issue