diff --git a/js/id/core/connection.js b/js/id/core/connection.js index 9743fd777..3a16b19ff 100644 --- a/js/id/core/connection.js +++ b/js/id/core/connection.js @@ -243,13 +243,13 @@ iD.Connection = function() { connection.changesetTags = function(comment, imageryUsed) { var detected = iD.detect(), tags = { - created_by: 'iD ' + iD.version, - imagery_used: imageryUsed.join(';').substr(0, 255), - 'iD:host': (window.location.origin + window.location.pathname).substr(0, 255), - 'iD:locale': detected.locale, - 'iD:browser': detected.browser + ' ' + detected.version, - 'iD:platform': detected.platform - }; + created_by: 'iD ' + iD.version, + imagery_used: imageryUsed.join(';').substr(0, 255), + host: (window.location.origin + window.location.pathname).substr(0, 255), + locale: detected.locale, + browser: detected.browser + ' ' + detected.version, + platform: detected.platform + }; if (comment) { tags.comment = comment.substr(0, 255);