[CORE] Fix small bug where Notice was sending a JSON representation to the queue, instead of sending itself

This commit is contained in:
Miguel Dantas 2019-09-01 00:48:39 +01:00 committed by Diogo Peralta Cordeiro
parent 58a9c71391
commit 18d9875e59

View File

@ -2546,11 +2546,8 @@ class Notice extends Managed_DataObject
// If there's a failure, we want to _force_
// distribution at this point.
try {
$json = json_encode((object)array('id' => $this->getID(),
'type' => 'Notice',
));
$qm = QueueManager::get();
$qm->enqueue($json, 'distrib');
$qm->enqueue($this, 'distrib');
} catch (Exception $e) {
// If the exception isn't transient, this
// may throw more exceptions as DQH does