[OStatus] Fix notice enqueue

OStatusPlugin:
- Enqueue in the last position, as it should be. No need to worry about
the OMB comment, this protocol no longer have queue handlers that could
cause a conflict.
This commit is contained in:
tenma 2019-08-06 21:34:02 +01:00 committed by Diogo Cordeiro
parent c28cee88b7
commit 5e589aba3c
1 changed files with 2 additions and 3 deletions

View File

@ -30,7 +30,7 @@ if (!defined('GNUSOCIAL')) { exit(1); }
class OStatusPlugin extends Plugin class OStatusPlugin extends Plugin
{ {
const PLUGIN_VERSION = '2.0.2'; const PLUGIN_VERSION = '2.0.3';
/** /**
* Hook for RouterInitialized event. * Hook for RouterInitialized event.
@ -120,8 +120,7 @@ class OStatusPlugin extends Plugin
function onStartEnqueueNotice($notice, &$transports) function onStartEnqueueNotice($notice, &$transports)
{ {
if ($notice->inScope(null) && $notice->getProfile()->hasRight(Right::PUBLICNOTICE)) { if ($notice->inScope(null) && $notice->getProfile()->hasRight(Right::PUBLICNOTICE)) {
// put our transport first, in case there's any conflict (like OMB) $transports[] = 'ostatus';
array_unshift($transports, 'ostatus');
$this->log(LOG_INFO, "OSTATUS [{$notice->getID()}]: queued for OStatus processing"); $this->log(LOG_INFO, "OSTATUS [{$notice->getID()}]: queued for OStatus processing");
} else { } else {
// FIXME: we don't do privacy-controlled OStatus updates yet. // FIXME: we don't do privacy-controlled OStatus updates yet.