diff options
author | Craig Andrews <candrews@integralblue.com> | 2009-11-20 15:34:48 -0500 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2009-11-20 13:58:13 -0800 |
commit | 3db551ed5a3778c9a80f8ba42166d77426724648 (patch) | |
tree | c772501c40af8c939e3e543176bebb15962edf35 /plugins/Realtime | |
parent | afe5e71c4eae342d4a7c6a462a63a4f475ba355e (diff) |
Undo part of c6e4feb815a60a7baf613026c414a24c5c918650 so that blacklisted notices are not displayed in realtime
Diffstat (limited to 'plugins/Realtime')
-rw-r--r-- | plugins/Realtime/RealtimePlugin.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Realtime/RealtimePlugin.php b/plugins/Realtime/RealtimePlugin.php index c5fb6de03..b737e442a 100644 --- a/plugins/Realtime/RealtimePlugin.php +++ b/plugins/Realtime/RealtimePlugin.php @@ -139,8 +139,8 @@ class RealtimePlugin extends Plugin // Add to the public timeline - if ($notice->is_local || - ($notice->is_local == 0 && !common_config('public', 'localonly'))) { + if ($notice->is_local == Notice::LOCAL_PUBLIC || + ($notice->is_local == Notice::REMOTE_OMB && !common_config('public', 'localonly'))) { $paths[] = array('public'); } |