mirror of
https://github.com/friendica/friendica
synced 2024-11-09 16:22:56 +00:00
Fix: Undefined array key "allow_cid"
This commit is contained in:
parent
642c55ee3e
commit
b351819986
1 changed files with 4 additions and 0 deletions
|
@ -83,6 +83,10 @@ class Statuses extends BaseApi
|
|||
$item['network'] = $post['network'];
|
||||
$item['gravity'] = $post['gravity'];
|
||||
$item['verb'] = $post['verb'];
|
||||
$item['allow_cid'] = $post['allow_cid'];
|
||||
$item['allow_gid'] = $post['allow_gid'];
|
||||
$item['deny_cid'] = $post['deny_cid'];
|
||||
$item['deny_gid'] = $post['deny_gid'];
|
||||
$item['app'] = $this->getApp();
|
||||
$item['sensitive'] = $request['sensitive'];
|
||||
|
||||
|
|
Loading…
Reference in a new issue