mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-08 00:04:27 +02:00
Fix foreign key violation for Notify insert with uri_id/parent_uri_id 0 instead NULL
This commit is contained in:
parent
bf7c66b2c7
commit
e1574dc2e7
2 changed files with 5 additions and 5 deletions
|
@ -60,14 +60,14 @@ class Notify extends BaseEntity
|
|||
protected $name_cache;
|
||||
/** @var string */
|
||||
protected $msg_cache;
|
||||
/** @var int */
|
||||
/** @var int|null */
|
||||
protected $uriId;
|
||||
/** @var int */
|
||||
/** @var int|null */
|
||||
protected $parentUriId;
|
||||
/** @var int */
|
||||
protected $id;
|
||||
|
||||
public function __construct(int $type, string $name, UriInterface $url, UriInterface $photo, DateTime $date, int $uid, UriInterface $link, bool $seen, string $verb, string $otype, string $name_cache, string $msg = null, string $msg_cache = null, int $itemId = null, int $uriId = null, int $parent = null, int $parentUriId = null, int $id = null)
|
||||
public function __construct(int $type, string $name, UriInterface $url, UriInterface $photo, DateTime $date, int $uid, UriInterface $link, bool $seen, string $verb, string $otype, string $name_cache, string $msg = null, string $msg_cache = null, int $itemId = null, int $uriId = null, int $parent = null, ?int $parentUriId = null, ?int $id = null)
|
||||
{
|
||||
$this->type = $type;
|
||||
$this->name = $name;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue