Skip to content

Commit

Permalink
Fix crawled link
Browse files Browse the repository at this point in the history
  • Loading branch information
cristan committed Sep 9, 2024
1 parent e5639cc commit 9609c9f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ object LocationsCrawler {

@JvmStatic
fun main(args: Array<String>): Unit = runBlocking {
val loaded = httpClient.get("http://fiets.openov.nl/locations.json").body<LocationsDTO>()
val loaded = httpClient.get("http://fiets.openov.nl/locaties.json").body<LocationsDTO>()
val asJson = json.encodeToString(loaded)
val file = File("app/src/main/res/raw/locations.json")
file.writeText(asJson)
Expand Down

0 comments on commit 9609c9f

Please sign in to comment.