Skip to content

Commit

Permalink
Fix #23886: IncompatibleClassChangeError in opendata
Browse files Browse the repository at this point in the history
It turns out that part of the problem is that the module site was not downloading raw text.

git-svn-id: https://josm.openstreetmap.de/osmsvn/applications/editors/josm/plugins@36327 b9d5c4c9-76e1-0310-9c85-f3177eceb1e4
  • Loading branch information
tsmock committed Aug 29, 2024
1 parent 6b06741 commit 6efef1b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public abstract class OdConstants {
public static final String PREF_MODULES = "opendata.modules";
public static final String PREF_MODULES_SITES = "opendata.modules.sites";
public static final String OSM_SITE = "https://josm.openstreetmap.de/browser/osm/applications/editors/josm/plugins/opendata";
public static final String[] DEFAULT_MODULE_SITES = {OSM_SITE + "modules.txt%<?modules=>"};
public static final String[] DEFAULT_MODULE_SITES = {OSM_SITE + "/modules.txt?format=txt%<?modules=>"};

public static final String PREF_CRS_COMPARISON_TOLERANCE = "opendata.crs.comparison_tolerance";
public static final Double DEFAULT_CRS_COMPARISON_TOLERANCE = 0.00000002;
Expand Down

0 comments on commit 6efef1b

Please sign in to comment.