kopia lustrzana https://github.com/friendica/friendica
enotify: empty out fields instead of using "abort" for addons
rodzic
ff9eb20663
commit
52a4010121
|
@ -67,7 +67,7 @@ class Notify extends BaseRepository
|
|||
/**
|
||||
* @param array $fields
|
||||
*
|
||||
* @return Model\Notify
|
||||
* @return Model\Notify|false
|
||||
*
|
||||
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
||||
* @throws Exception
|
||||
|
@ -75,17 +75,14 @@ class Notify extends BaseRepository
|
|||
public function insert(array $fields)
|
||||
{
|
||||
$fields['date'] = DateTimeFormat::utcNow();
|
||||
$fields['abort'] = false;
|
||||
|
||||
Hook::callAll('enotify_store', $fields);
|
||||
|
||||
if ($fields['abort']) {
|
||||
if (empty($fields)) {
|
||||
$this->logger->debug('Abort adding notification entry', ['fields' => $fields]);
|
||||
return null;
|
||||
return false;
|
||||
}
|
||||
|
||||
unset($fields['abort']);
|
||||
|
||||
$this->logger->debug('adding notification entry', ['fields' => $fields]);
|
||||
|
||||
return parent::insert($fields);
|
||||
|
|
Ładowanie…
Reference in New Issue