mirror of
https://github.com/friendica/friendica
synced 2025-04-26 05:50:11 +00:00
database.sql updated, standards fixed
This commit is contained in:
parent
4a1fb1da12
commit
d4a536137d
5 changed files with 104 additions and 5 deletions
|
@ -44,7 +44,7 @@ class Queue
|
|||
public static function add(array $activity, string $type, int $uid, string $http_signer, bool $push): array
|
||||
{
|
||||
$fields = [
|
||||
'activity-id' => $activity['id'],
|
||||
'activity-id' => $activity['id'],
|
||||
'object-id' => $activity['object_id'],
|
||||
'type' => $type,
|
||||
'object-type' => $activity['object_type'],
|
||||
|
@ -104,9 +104,9 @@ class Queue
|
|||
|
||||
Logger::debug('Processing queue entry', ['id' => $entry['id'], 'type' => $entry['type'], 'object-type' => $entry['object-type'], 'uri' => $entry['object-id'], 'in-reply-to' => $entry['in-reply-to-id']]);
|
||||
|
||||
$activity = json_decode($entry['activity'], true);
|
||||
$type = $entry['type'];
|
||||
$push = $entry['push'];
|
||||
$activity = json_decode($entry['activity'], true);
|
||||
$type = $entry['type'];
|
||||
$push = $entry['push'];
|
||||
|
||||
$activity['entry-id'] = $entry['id'];
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue