fix(account): Fix moved field on Account (#31)

master
Klaus Purer 6 years ago committed by Aaron Power
parent 0c312cecfc
commit bc68726d23
  1. 2
      src/entities/account.rs

@ -44,7 +44,7 @@ pub struct Account {
pub source: Option<Source>,
/// If the owner decided to switch accounts, new account is in
/// this attribute
pub moved: Option<String>,
pub moved: Option<Box<Account>>,
}
/// An extra object given from `verify_credentials` giving defaults about a user

Loading…
Cancel
Save