diff --git a/src/account_manager.rs b/src/account_manager.rs index d98d7ca27..ee069323d 100644 --- a/src/account_manager.rs +++ b/src/account_manager.rs @@ -71,6 +71,7 @@ pub struct Profile { pub about: Option, pub about_emoji: Option, pub avatar: Option, + pub unrestricted_unidentified_access: bool, } impl AccountManager { diff --git a/src/profile_cipher.rs b/src/profile_cipher.rs index 7da962eab..f4c552181 100644 --- a/src/profile_cipher.rs +++ b/src/profile_cipher.rs @@ -157,6 +157,8 @@ impl ProfileCipher { about, about_emoji, avatar: encrypted_profile.avatar, + unrestricted_unidentified_access: encrypted_profile + .unrestricted_unidentified_access, }) }