]> git.mxchange.org Git - friendica.git/commitdiff
Fix database error (wrong field name)
authorMichael <heluecht@pirati.ca>
Mon, 17 Aug 2020 19:59:16 +0000 (19:59 +0000)
committerMichael <heluecht@pirati.ca>
Mon, 17 Aug 2020 19:59:16 +0000 (19:59 +0000)
mod/network.php

index d89ad6c4d31aff9e38d948624dba16ab41d899b0..48f250e44c02fedc1d2f2ada4c02de1e4597bd16 100644 (file)
@@ -599,7 +599,7 @@ function networkThreadedView(App $a, $update, $parent)
        if ($update) {
                if (!empty($parent)) {
                        // Load only a single thread
-                       $conditionFields['id'] = $parent;
+                       $conditionFields['parent'] = $parent;
                } elseif ($order === 'post') {
                        // Only load new toplevel posts
                        $conditionFields['unseen'] = true;