aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2020-05-17 04:27:48 -0400
committerJesse Luehrs <doy@tozt.net>2020-05-17 04:27:48 -0400
commit5f652afffef3a9bdeaf94e7691a3115ce0994376 (patch)
tree66376e626d6546e0bd624aae90d4e83d43e85d86
parentabb96894802982024ded92476916251380c88c4c (diff)
downloadrbw-5f652afffef3a9bdeaf94e7691a3115ce0994376.tar.gz
rbw-5f652afffef3a9bdeaf94e7691a3115ce0994376.zip
don't expect the refresh token response to have a key
the official server doesn't do this, and i don't use it anyway
-rw-r--r--src/api.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/api.rs b/src/api.rs
index b306f7c..09c90b1 100644
--- a/src/api.rs
+++ b/src/api.rs
@@ -65,8 +65,6 @@ struct ConnectRefreshTokenRes {
expires_in: u32,
token_type: String,
refresh_token: String,
- #[serde(rename = "Key")]
- key: String,
}
#[derive(serde::Deserialize, Debug)]