diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-01-23 03:58:18 +0100 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-01-23 03:58:18 +0100 |
commit | 21d156c05b830c54413a5f5a9bb6bdab4b372eb7 (patch) | |
tree | 5b72109f524bf2d748ca9b4123632864913d2ae0 /lib | |
parent | 6b884d9f86fd6f155a168f928c47cc9d49f2a8ed (diff) |
Keep checking who's received stuff in jabber broadcast
Diffstat (limited to 'lib')
-rw-r--r-- | lib/jabber.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/jabber.php b/lib/jabber.php index c33722ea5..84d2a562c 100644 --- a/lib/jabber.php +++ b/lib/jabber.php @@ -392,6 +392,7 @@ function jabber_broadcast_notice($notice) // To keep the incoming queue from filling up, // we service it after each send. $conn->processTime(0); + $sent_to[$user->id] = 1; } } @@ -413,6 +414,7 @@ function jabber_broadcast_notice($notice) // To keep the incoming queue from filling up, // we service it after each send. $conn->processTime(0); + $sent_to[$user->id] = 1; } } |