Skip to content

Commit

Permalink
Merge pull request #60 from takke/fix_PLCDirectory
Browse files Browse the repository at this point in the history
fix PLCDirectory
  • Loading branch information
uakihir0 authored Jun 24, 2024
2 parents 9812fb3 + 22e6902 commit 1fd1c69
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@ class _PLCDirectory(
return proceed {
runBlocking {
HttpRequest()
.url(uri)
.path(did)
.url("$uri$did")
.get()
}
}
Expand All @@ -33,8 +32,7 @@ class _PLCDirectory(
return proceed {
runBlocking {
HttpRequest()
.url(uri)
.path("$did/log")
.url("$uri$did/log")
.get()
}
}
Expand Down

0 comments on commit 1fd1c69

Please sign in to comment.