Changeset 35226 in osm for applications/editors


Ignore:
Timestamp:
2019-11-07T14:47:17+01:00 (5 years ago)
Author:
gerdp
Message:

fix #15626 Plugin reverter - Objects should not be downloaded via Overpass API when reverting changesets

Location:
applications/editors/josm/plugins/reverter
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/reverter/build.xml

    r35084 r35226  
    44    <property name="commit.message" value="Reverter: fix deleted/redacted relation members"/>
    55    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    6     <property name="plugin.main.version" value="14946"/>
     6    <property name="plugin.main.version" value="15520"/>
    77
    88    <!-- Configure these properties (replace "..." accordingly).
  • applications/editors/josm/plugins/reverter/src/reverter/ChangesetReverter.java

    r35080 r35226  
    283283    public void downloadMissingPrimitives(ProgressMonitor monitor) throws OsmTransferException {
    284284        if (!hasMissingObjects()) return;
    285         MultiFetchServerObjectReader rdr = MultiFetchServerObjectReader.create();
     285        MultiFetchServerObjectReader rdr = MultiFetchServerObjectReader.create(false);
    286286        for (PrimitiveId id : missing) {
    287287            switch (id.getType()) {
Note: See TracChangeset for help on using the changeset viewer.