diff options
author | cel 🌸 <cel@blos.sm> | 2023-07-12 13:03:04 +0100 |
---|---|---|
committer | cel 🌸 <cel@blos.sm> | 2023-07-12 13:03:04 +0100 |
commit | 84d861c2b2614477ce4a85ca6dbac70cdccf2944 (patch) | |
tree | f0f91f8c971c225d2e55d7b911f3e2d2450d851a /src/client/unencrypted.rs | |
parent | 39b7d3cb63faafe446b9a0695d6ef06ae50f7afb (diff) | |
download | luz-84d861c2b2614477ce4a85ca6dbac70cdccf2944.tar.gz luz-84d861c2b2614477ce4a85ca6dbac70cdccf2944.tar.bz2 luz-84d861c2b2614477ce4a85ca6dbac70cdccf2944.zip |
use Stream 'ns' value
Diffstat (limited to 'src/client/unencrypted.rs')
-rw-r--r-- | src/client/unencrypted.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/client/unencrypted.rs b/src/client/unencrypted.rs index 3f3a133..dcd10c6 100644 --- a/src/client/unencrypted.rs +++ b/src/client/unencrypted.rs @@ -52,7 +52,6 @@ impl<'j> JabberClient<'j> { pub async fn get_features(&mut self) -> Result<Option<Vec<StreamFeature>>> { if let Some(features) = Element::read(&mut self.reader).await? { - println!("{:?}", features); Ok(Some(features.try_into()?)) } else { Ok(None) |