From: Michael Date: Sat, 19 Jun 2021 18:27:35 +0000 (+0000) Subject: Context: use the correct "select functionality X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=97891fe05ba3232c07de7d54e80a8c53eda0e2a4;p=friendica.git Context: use the correct "select functionality --- diff --git a/src/Module/Api/Mastodon/Statuses/Context.php b/src/Module/Api/Mastodon/Statuses/Context.php index 112ae857c6..226e52c9ea 100644 --- a/src/Module/Api/Mastodon/Statuses/Context.php +++ b/src/Module/Api/Mastodon/Statuses/Context.php @@ -58,8 +58,8 @@ class Context extends BaseApi $parents = []; $children = []; - $posts = Post::select(['uri-id', 'thr-parent-id'], - ['parent-uri-id' => $parent['parent-uri-id'], 'gravity' => [GRAVITY_PARENT, GRAVITY_COMMENT]], [], false); + $posts = Post::selectPosts(['uri-id', 'thr-parent-id'], + ['parent-uri-id' => $parent['parent-uri-id'], 'gravity' => [GRAVITY_PARENT, GRAVITY_COMMENT]], []); while ($post = Post::fetch($posts)) { if ($post['uri-id'] == $post['thr-parent-id']) { continue;