[various] Remove unused uid parameter in Item::newURI

This commit is contained in:
Hypolite Petovan 2022-07-09 15:51:41 -04:00
parent ed1de0cd18
commit 347792bf74
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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;