From b4c51b2d39af518b297848307820df53d76fc999 Mon Sep 17 00:00:00 2001 From: Mikael Nordfeldth Date: Sat, 10 Oct 2015 20:36:54 +0200 Subject: [PATCH] Use an atom:link to ApiMediaUpload response instead of mediahref 'cause why not? --- actions/apimediaupload.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/actions/apimediaupload.php b/actions/apimediaupload.php index fedaef1748..3a06a75e85 100644 --- a/actions/apimediaupload.php +++ b/actions/apimediaupload.php @@ -91,10 +91,14 @@ class ApiMediaUploadAction extends ApiAuthAction function showResponse(MediaFile $upload) { $this->initDocument(); - $this->elementStart('rsp', array('stat' => 'ok')); + $this->elementStart('rsp', array('stat' => 'ok', 'xmlns:atom'=>Activity::ATOM)); $this->element('mediaid', null, $upload->fileRecord->id); $this->element('mediaurl', null, $upload->shortUrl()); - $this->element('mediahref', null, $upload->fileRecord->getUrl()); + + $enclosure = $upload->fileRecord->getEnclosure(); + $this->element('atom:link', array('rel' => 'enclosure', + 'href' => $enclosure->url, + 'type' => $enclosure->mimetype)); $this->elementEnd('rsp'); $this->endDocument(); }