Limit imagery_used tag to 255 characters (fixes #2181)

This commit is contained in:
John Firebaugh
2014-05-28 17:04:49 -07:00
parent 0a83545a76
commit 38b821bdea
+1 -1
View File
@@ -207,7 +207,7 @@ iD.Connection = function() {
connection.changesetTags = function(comment, imageryUsed) {
var tags = {
imagery_used: imageryUsed.join(';'),
imagery_used: imageryUsed.join(';').substr(0, 255),
created_by: 'iD ' + iD.version
};