Report a 404 not found if no posts found for User timeline

This commit is contained in:
Mikael Nordfeldth 2014-11-22 12:29:13 +01:00
parent d1b10ee92b
commit 5295e8d4de
1 changed files with 5 additions and 0 deletions

View File

@ -252,6 +252,11 @@ class ApiTimelineUserAction extends ApiBareAuthAction
}
}
if (empty($notices)) {
// TRANS: When no posts were found with specific or default parameters
$this->clientError(_('Did not find any posts within search parameters'), 404);
}
return $notices;
}