From: Craig Andrews Date: Mon, 16 Nov 2009 21:19:27 +0000 (-0500) Subject: Only show local notices or (remote notices if they're supposed to be shown) X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=e4d191334f5b2e40a4cd97e1c23677d4712b7700;p=quix0rs-gnu-social.git Only show local notices or (remote notices if they're supposed to be shown) --- diff --git a/plugins/Realtime/RealtimePlugin.php b/plugins/Realtime/RealtimePlugin.php index 0f0d0f9f42..a21c33b103 100644 --- a/plugins/Realtime/RealtimePlugin.php +++ b/plugins/Realtime/RealtimePlugin.php @@ -132,8 +132,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'); }