Check if online.

This commit is contained in:
Paul
2021-02-18 16:47:59 +00:00
parent 52e070c21c
commit 656df5126e

View File

@@ -119,9 +119,9 @@ impl Message {
match &channel { match &channel {
Channel::DirectMessage { recipients, .. } | Channel::Group { recipients, .. } => { Channel::DirectMessage { recipients, .. } | Channel::Group { recipients, .. } => {
for recipient in recipients { for recipient in recipients {
// if !is_online(recipient) { if !is_online(recipient) {
target_ids.push(recipient.clone()); target_ids.push(recipient.clone());
// } }
} }
} }
_ => {} _ => {}