Skip to content

Commit

Permalink
fix SyncEditorLayerIndex script
Browse files Browse the repository at this point in the history
git-svn-id: https://josm.openstreetmap.de/svn/trunk@19213 0c6e7542-c601-0410-84e7-c038aed88b3b
  • Loading branch information
stoecker committed Sep 9, 2024
1 parent 2002127 commit 8d42e3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/SyncEditorLayerIndex.java
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ void loadELIUsers() throws IOException {
}
myprintln("*** Loaded "+idEntries.size()+" entries (iD). ***");
try (JsonReader jr = Json.createReader(Files.newBufferedReader(Paths.get(rapidInputFile), UTF_8))) {
rapidEntries = jr.readArray();
rapidEntries = jr.readObject().getJsonArray("imagery");
}
for (JsonValue e : rapidEntries) {
String url = getUrlStripped(e);
Expand Down

0 comments on commit 8d42e3f

Please sign in to comment.