Skip to content

Commit

Permalink
typo in server.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
SidneyNiccolson committed Jun 26, 2018
1 parent 4aa8841 commit ee3dab5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -205,8 +205,8 @@ fn connect(req: &mut Request) -> IronResult<Response> {
let params = get_request_ref!(req, Params, "Getting request params failed");
let ssid = get_param!(params, "ssid", String);
let passphrase = get_param!(params, "passphrase", String);
let api = get_param!(params, "API", String);
let ws = get_param!(params, "WS", String);
let api = get_param!(params, "api", String);
let ws = get_param!(params, "ws", String);
let serial = get_param!(params, "serial", String);
let secret = get_param!(params, "secret", String);
(ssid, passphrase, api, ws, serial, secret)
Expand Down

0 comments on commit ee3dab5

Please sign in to comment.