Only use items that had originally been posted in the last week

pull/12283/head
Michael 2022-11-28 14:51:37 +00:00
parent 0e160040d4
commit bded1c3989
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ class Statuses extends BaseApi
'limit' => 10, // Maximum number of results to return. Defaults to 10.
], $request);
$condition = ["NOT `private` AND `commented` > ?", DateTimeFormat::utc('now -1 day')];
$condition = ["NOT `private` AND `commented` > ? AND `created` > ?", DateTimeFormat::utc('now -1 day'), DateTimeFormat::utc('now -1 week')];
$condition = DBA::mergeConditions($condition, ['network' => Protocol::FEDERATED]);
$trending = [];