forked from friendica/friendica-addons
Merge pull request #1272 from MrPetovan/bug/fatal-errors
[various] Remove unused uid parameter in Item::newURI
This commit is contained in:
commit
3b01cb035e
|
@ -923,7 +923,7 @@ function pumpio_dolike(App $a, int $uid, array $self, $post, string $own_id, $th
|
|||
$likedata['uid'] = $uid;
|
||||
$likedata['wall'] = 0;
|
||||
$likedata['network'] = Protocol::PUMPIO;
|
||||
$likedata['uri'] = Item::newURI($uid);
|
||||
$likedata['uri'] = Item::newURI();
|
||||
$likedata['thr-parent'] = $orig_post['uri'];
|
||||
$likedata['contact-id'] = $contactid;
|
||||
$likedata['app'] = $post->generator->displayName;
|
||||
|
|
|
@ -830,7 +830,7 @@ function statusnet_fetchtimeline(App $a, int $uid)
|
|||
$_REQUEST['extid'] = Protocol::STATUSNET;
|
||||
|
||||
if (isset($post->id)) {
|
||||
$_REQUEST['message_id'] = Item::newURI($uid, Protocol::STATUSNET . ':' . $post->id);
|
||||
$_REQUEST['message_id'] = Item::newURI(Protocol::STATUSNET . ':' . $post->id);
|
||||
}
|
||||
|
||||
//$_REQUEST['date'] = $post->created_at;
|
||||
|
|
Loading…
Reference in a new issue