X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fapitimelineretweetsofme.php;h=d01db87b937172dec45d61164633237c9960004e;hb=88c00facc807d1c138146c02c703e2294b5d357b;hp=03137e7a9a09d26dc4746b301d84b7a8176f9977;hpb=20396ce8e158c497a1485024ba06805bdcaf8049;p=quix0rs-gnu-social.git diff --git a/actions/apitimelineretweetsofme.php b/actions/apitimelineretweetsofme.php index 03137e7a9a..d01db87b93 100644 --- a/actions/apitimelineretweetsofme.php +++ b/actions/apitimelineretweetsofme.php @@ -115,7 +115,15 @@ class ApiTimelineRetweetsOfMeAction extends ApiAuthAction array('nickname' => $this->auth_user->nickname) ); - $strm = $this->auth_user->repeatsOfMe($offset, $limit, $this->since_id, $this->max_id); + // This is a really bad query for some reason + + if (!common_config('performance', 'high')) { + $strm = $this->auth_user->repeatsOfMe($offset, $limit, $this->since_id, $this->max_id); + } else { + $strm = new Notice(); + $strm->whereAdd('0 = 1'); + $strm->find(); + } switch ($this->format) { case 'xml':