]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Api/Mastodon/Statuses/Context.php
Some more formatting
[friendica.git] / src / Module / Api / Mastodon / Statuses / Context.php
index d64b4d24cf66fef2d9c87cea9c2d41b76688101b..2b06f9db3b4018660634e1988ed92775573be72f 100644 (file)
@@ -79,6 +79,7 @@ class Context extends BaseApi
        {
                if (!empty($parents[$id])) {
                        $list[] = $parents[$id];
+
                        $list = self::getParents($parents[$id], $parents, $list);
                }
                return $list;
@@ -89,6 +90,7 @@ class Context extends BaseApi
                if (!empty($children[$id])) {
                        foreach ($children[$id] as $child) {
                                $list[] = $child;
+
                                $list = self::getChildren($child, $children, $list);
                        }
                }