mirror of
https://github.com/friendica/friendica
synced 2024-11-09 23:42:53 +00:00
Merge pull request #9024 from annando/fix-db-error
Fix database error (wrong field name)
This commit is contained in:
commit
ba868ea7d7
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue