From: Tom Hughes Date: Mon, 14 Nov 2022 12:32:18 +0000 (+0000) Subject: Merge remote-tracking branch 'upstream/pull/3792' X-Git-Tag: live~2006 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/533a10bee4797f316b843900efd62d12f5d85c59?hp=b3e5af0ee83bfe97882f462972184d8697ef3237 Merge remote-tracking branch 'upstream/pull/3792' --- diff --git a/app/assets/javascripts/id.js b/app/assets/javascripts/id.js index 88b628e67..2d0d01a6f 100644 --- a/app/assets/javascripts/id.js +++ b/app/assets/javascripts/id.js @@ -11,15 +11,18 @@ document.addEventListener("DOMContentLoaded", function () { "Please upgrade your browser or use JOSM to edit the map."; container.className = "unsupported"; } else { - var id = iD.coreContext() + var idContext = iD.coreContext(); + idContext.connection().apiConnections([]); + idContext.preauth({ + url: location.protocol + "//" + location.host, + access_token: container.dataset.token + }); + + var id = idContext .embed(true) .assetPath("iD/") .assetMap(JSON.parse(container.dataset.assetMap)) .locale(container.dataset.locale) - .preauth({ - url: location.protocol + "//" + location.host, - access_token: container.dataset.token - }) .containerNode(container) .init();