refactor: remove the code to set own avatar in set_profile_image()

This code remains from the time when we have synchronized the avatar
between devices by looking at outgoing messages.
This commit is contained in:
link2xt
2026-08-29 16:48:00 +00:00
committed by l
parent 38d6cf2bcd
commit 3ff8011676

View File

@@ -38,7 +38,9 @@ use crate::param::{Param, Params};
use crate::pgp::{addresses_from_public_key, merge_openpgp_certificates}; use crate::pgp::{addresses_from_public_key, merge_openpgp_certificates};
use crate::sync::{self, Sync::*}; use crate::sync::{self, Sync::*};
use crate::tools::{SystemTime, duration_to_str, get_abs_path, normalize_text, time, to_lowercase}; use crate::tools::{SystemTime, duration_to_str, get_abs_path, normalize_text, time, to_lowercase};
use crate::{chat, chatlist_events, ensure_and_debug_assert_ne, stock_str}; use crate::{
chat, chatlist_events, ensure_and_debug_assert, ensure_and_debug_assert_ne, stock_str,
};
/// Time during which a contact is considered as seen recently. /// Time during which a contact is considered as seen recently.
const SEEN_RECENTLY_SECONDS: i64 = 600; const SEEN_RECENTLY_SECONDS: i64 = 600;
@@ -1912,32 +1914,25 @@ WHERE type=? AND id IN (
/// The given profile image is expected to be already in the blob directory /// The given profile image is expected to be already in the blob directory
/// as profile images can be set only by receiving messages, this should be always the case, however. /// as profile images can be set only by receiving messages, this should be always the case, however.
/// ///
/// For contact SELF, the image is not saved in the contact-database but as Config::Selfavatar. /// Cannot be used to set own profile picture, set [`Config::Selfavatar`] instead.
pub(crate) async fn set_profile_image( pub(crate) async fn set_profile_image(
context: &Context, context: &Context,
contact_id: ContactId, contact_id: ContactId,
profile_image: &AvatarAction, profile_image: &AvatarAction,
) -> Result<()> { ) -> Result<()> {
ensure_and_debug_assert!(
!contact_id.is_special(),
"Cannot set avatar for special contacts"
);
let mut contact = Contact::get_by_id(context, contact_id).await?; let mut contact = Contact::get_by_id(context, contact_id).await?;
let changed = match profile_image { let changed = match profile_image {
AvatarAction::Change(profile_image) => { AvatarAction::Change(profile_image) => {
if contact_id == ContactId::SELF { contact.param.set(Param::ProfileImage, profile_image);
context
.set_config_ext(Nosync, Config::Selfavatar, Some(profile_image))
.await?;
} else {
contact.param.set(Param::ProfileImage, profile_image);
}
true true
} }
AvatarAction::Delete => { AvatarAction::Delete => {
if contact_id == ContactId::SELF { contact.param.remove(Param::ProfileImage);
context
.set_config_ext(Nosync, Config::Selfavatar, None)
.await?;
} else {
contact.param.remove(Param::ProfileImage);
}
true true
} }
}; };