Skip to content

Commit

Permalink
chore: fix access server path
Browse files Browse the repository at this point in the history
  • Loading branch information
Ma233 committed Aug 20, 2024
1 parent 8902996 commit 57a9746
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/access.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ impl AccessClient {
}

async fn request_endpoint(&mut self, peer: &PeerId) -> Result<bool, reqwest::Error> {
let url = self.endpoint.join("access-control").unwrap();
let url = self.endpoint.join("access").unwrap();
let params = [("peer_id", peer.to_string())];

let response = self
Expand Down

0 comments on commit 57a9746

Please sign in to comment.