diff --git a/lib/grammers-client/src/types/password_token.rs b/lib/grammers-client/src/types/password_token.rs index e54b84bb..08848554 100644 --- a/lib/grammers-client/src/types/password_token.rs +++ b/lib/grammers-client/src/types/password_token.rs @@ -7,7 +7,8 @@ // except according to those terms. use grammers_tl_types as tl; -#[derive(Debug)] +// TODO this should not be Clone, but check_password Err doesn't include it back yet +#[derive(Clone, Debug)] pub struct PasswordToken { pub(crate) password: tl::types::account::Password, }