aboutsummaryrefslogtreecommitdiffstats
path: root/teleterm/src/cmd/stream.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2019-12-16 00:40:30 -0500
committerJesse Luehrs <doy@tozt.net>2019-12-16 00:41:18 -0500
commitee5de447d977999e7f5b4b41685d74ce28d63535 (patch)
tree561e40c24c3dbb15ed705dbaf4d0493fc0e60f25 /teleterm/src/cmd/stream.rs
parent01f148cae5b09271788f328880407616d7bdeea8 (diff)
downloadteleterm-ee5de447d977999e7f5b4b41685d74ce28d63535.tar.gz
teleterm-ee5de447d977999e7f5b4b41685d74ce28d63535.zip
move client id file manipulation out of oauth
it doesn't actually have anything to do with the oauth flow
Diffstat (limited to 'teleterm/src/cmd/stream.rs')
-rw-r--r--teleterm/src/cmd/stream.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/teleterm/src/cmd/stream.rs b/teleterm/src/cmd/stream.rs
index 4c3f229..c47804a 100644
--- a/teleterm/src/cmd/stream.rs
+++ b/teleterm/src/cmd/stream.rs
@@ -36,7 +36,7 @@ impl crate::config::Config for Config {
}
}
crate::protocol::AuthType::RecurseCenter => {
- let id = crate::oauth::load_client_auth_id(self.client.auth);
+ let id = crate::client::load_client_auth_id(self.client.auth);
crate::protocol::Auth::recurse_center(
id.as_ref().map(std::string::String::as_str),
)