X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fapitimelineretweetsofme.php;h=fe90213665074e7e6b4e430946c22200c4c6925e;hb=1adf5f28639f335d289fdfbdc453e45f4ac93484;hp=d38e730ac6649c9d36d1ae0f5bba53bbd18af5e4;hpb=31b29fde50e9664e1b70064c043879ce87553883;p=quix0rs-gnu-social.git diff --git a/actions/apitimelineretweetsofme.php b/actions/apitimelineretweetsofme.php index d38e730ac6..fe90213665 100644 --- a/actions/apitimelineretweetsofme.php +++ b/actions/apitimelineretweetsofme.php @@ -31,9 +31,6 @@ if (!defined('STATUSNET')) { exit(1); } -require_once INSTALLDIR . '/lib/apiauth.php'; -require_once INSTALLDIR . '/lib/mediafile.php'; - /** * Show authenticating user's most recent notices that have been repeated * @@ -115,7 +112,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': @@ -137,7 +142,7 @@ class ApiTimelineRetweetsOfMeAction extends ApiAuthAction $this->raw($atom->getString()); break; case 'as': - header('Content-Type: application/json; charset=utf-8'); + header('Content-Type: ' . ActivityStreamJSONDocument::CONTENT_TYPE); $doc = new ActivityStreamJSONDocument($this->auth_user); $doc->setTitle($title); $doc->addLink($link, 'alternate', 'text/html');