mirror of
https://github.com/FoggedLens/iD.git
synced 2026-05-16 05:49:16 +02:00
Limit imagery_used tag to 255 characters (fixes #2181)
This commit is contained in:
@@ -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
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user