Browse Source

oops

master
eta 4 years ago
parent
commit
6ca92a5db0
  1. 4
      src/whatsapp.rs

4
src/whatsapp.rs

@ -814,7 +814,7 @@ impl WhatsappManager { @@ -814,7 +814,7 @@ impl WhatsappManager {
ProfileStatus { jid, status, was_request } => {
if jid.is_group {
warn!("Got profile status for non-user jid {}", jid);
return;
return Ok(());
}
let recip = self.get_wa_recipient(&jid)?;
if !was_request {
@ -824,7 +824,7 @@ impl WhatsappManager { @@ -824,7 +824,7 @@ impl WhatsappManager {
PictureChange { jid, removed } => {
if jid.is_group {
warn!("Got picture change for non-user jid {}", jid);
return;
return Ok(());
}
let recip = self.get_wa_recipient(&jid)?;
if !removed {

Loading…
Cancel
Save