mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-02 13:31:10 +00:00
Changed:
- moved constants GRAVITY_* from boot.php to Friendica\Model\Item
This commit is contained in:
parent
d267e7f0b7
commit
346ad9a3e2
2 changed files with 3 additions and 3 deletions
|
@ -919,7 +919,7 @@ function pumpio_dolike(App $a, int $uid, array $self, $post, string $own_id, $th
|
|||
$likedata = [];
|
||||
$likedata['parent'] = $orig_post['id'];
|
||||
$likedata['verb'] = Activity::LIKE;
|
||||
$likedata['gravity'] = GRAVITY_ACTIVITY;
|
||||
$likedata['gravity'] = Item::GRAVITY_ACTIVITY;
|
||||
$likedata['uid'] = $uid;
|
||||
$likedata['wall'] = 0;
|
||||
$likedata['network'] = Protocol::PUMPIO;
|
||||
|
|
|
@ -1827,7 +1827,7 @@ function twitter_createpost(App $a, int $uid, $post, array $self, $create_user,
|
|||
|
||||
$item = Post::selectFirst(['uri'], ['uri' => $thr_parent, 'uid' => $uid]);
|
||||
if (!DBA::isResult($item)) {
|
||||
$item = Post::selectFirst(['uri'], ['extid' => $thr_parent, 'uid' => $uid, 'gravity' => GRAVITY_COMMENT]);
|
||||
$item = Post::selectFirst(['uri'], ['extid' => $thr_parent, 'uid' => $uid, 'gravity' => Item::GRAVITY_COMMENT]);
|
||||
}
|
||||
|
||||
if (DBA::isResult($item)) {
|
||||
|
@ -1948,7 +1948,7 @@ function twitter_createpost(App $a, int $uid, $post, array $self, $create_user,
|
|||
|
||||
// CHange the other post into a reshare activity
|
||||
$postarray['verb'] = Activity::ANNOUNCE;
|
||||
$postarray['gravity'] = GRAVITY_ACTIVITY;
|
||||
$postarray['gravity'] = Item::GRAVITY_ACTIVITY;
|
||||
$postarray['object-type'] = Activity\ObjectType::NOTE;
|
||||
|
||||
$postarray['thr-parent'] = $retweet['uri'];
|
||||
|
|
Loading…
Reference in a new issue