Skip to content

Commit 4b6d442

Browse files
committed
Remove extraneous parameter to object.merge
1 parent fa09566 commit 4b6d442

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/amplitude.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ Amplitude.prototype.logEvent = function(eventType, eventProperties) {
265265

266266
// Add the utm properties, if any, onto the user properties.
267267
var userProperties = {};
268-
object.merge(userProperties, this.options.userProperties || {}, this._utmProperties);
268+
object.merge(userProperties, this.options.userProperties || {});
269269
object.merge(userProperties, this._utmProperties);
270270

271271
eventProperties = eventProperties || {};

0 commit comments

Comments
 (0)