From ab190f085b0ec548d0cec1abd7bf4de4e5e966d7 Mon Sep 17 00:00:00 2001 From: Eduard Popov Date: Sat, 23 Jul 2016 01:52:19 +1000 Subject: [PATCH] fix critical error on save changes (#3264) --- modules/core/connection.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/core/connection.js b/modules/core/connection.js index 741163c5b..c3a312867 100644 --- a/modules/core/connection.js +++ b/modules/core/connection.js @@ -280,7 +280,7 @@ export function Connection(useHttps) { method: 'PUT', path: '/api/0.6/changeset/create', options: { header: { 'Content-Type': 'text/xml' } }, - content: JXON.stringify(connection.changesetJXON(connection.changesetTags(comment, imageryUsed))) + content: JXON.stringify(connection.changesetJXON(connection.changesetTags(version, comment, imageryUsed))) }, function(err, changeset_id) { if (err) return callback(err); oauth.xhr({