mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-02 13:31:10 +00:00
Merge pull request #1309 from annando/issue-12161
Issue 12161: Fix Unknown column 'post-view.id'
This commit is contained in:
commit
18e7d5bfea
1 changed files with 1 additions and 1 deletions
|
@ -1226,7 +1226,7 @@ function pumpio_fetchinbox(App $a, int $uid)
|
|||
$self = User::getOwnerDataById($uid);
|
||||
|
||||
$lastitems = DBA::p("SELECT `uri` FROM `post-thread-user`
|
||||
INNER JOIN `post-view` ON `post-view`.`id` = `post-thread-user`.`id`
|
||||
INNER JOIN `post-view` ON `post-view`.`uri-id` = `post-thread-user`.`uri-id`
|
||||
WHERE `post-thread-user`.`network` = ? AND `post-thread-user`.`uid` = ? AND `post-view`.`extid` != ''
|
||||
ORDER BY `post-thread-user`.`commented` DESC LIMIT 10", Protocol::PUMPIO, $uid);
|
||||
|
||||
|
|
Loading…
Reference in a new issue