Skip to content

Commit

Permalink
🐛 Fix sign vs ssh
Browse files Browse the repository at this point in the history
  • Loading branch information
reckter committed Aug 31, 2021
1 parent d1b964e commit 26891d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/agent/sign.rs
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ pub async fn sign_request(
let relay_id = base64::encode_config(randombytes(32), base64::URL_SAFE);

let mut payload = HashMap::new();
payload.insert("type", "sign".to_string());
payload.insert("type", "ssh".to_string());
payload.insert("data", base64_data);
payload.insert("userName", name);

Expand Down

0 comments on commit 26891d2

Please sign in to comment.