Ticket #23642: 23642-2.patch

File 23642-2.patch, 702 bytes (added by GerdP, 2 weeks ago)

I don't know how long it will take to fix the error in the OSM API. There is already a pull request. Anyhow I wonder why the Changeset manager doesn't always download the discussion. This patch would achive that.

  • src/org/openstreetmap/josm/gui/dialogs/ChangesetDialog.java

     
    531531                task = null;
    532532                future = null;
    533533            } else {
    534                 task = new ChangesetHeaderDownloadTask(toDownload);
     534                task = new ChangesetHeaderDownloadTask(MainApplication.getMainFrame(), toDownload, true);
    535535                future = MainApplication.worker.submit(new PostDownloadHandler(task, task.download()));
    536536            }
    537537