Changeset 3566 in josm for trunk/src/org
- Timestamp:
- 2010-09-26T23:26:03+02:00 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/io/OsmApi.java
r3366 r3566 389 389 monitor.beginTask(tr("Closing changeset...")); 390 390 initialize(monitor); 391 sendRequest("PUT", "changeset" + "/" + changeset.getId() + "/close", null, monitor); 391 /* send "\r\n" instead of empty string, so we don't send zero payload - works around bugs 392 in proxy software */ 393 sendRequest("PUT", "changeset" + "/" + changeset.getId() + "/close", "\r\n", monitor); 392 394 changeset.setOpen(false); 393 395 } finally {
Note:
See TracChangeset
for help on using the changeset viewer.