Skip to content
Snippets Groups Projects
Commit 02077a40 authored by insert's avatar insert
Browse files

Check if online.

parent 52e070c2
No related merge requests found
Pipeline #677 passed with stage
in 12 minutes and 49 seconds
...@@ -119,9 +119,9 @@ impl Message { ...@@ -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());
// } }
} }
} }
_ => {} _ => {}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment