summaryrefslogtreecommitdiff
path: root/lib/twitterapi.php
diff options
context:
space:
mode:
authorCraig Andrews <candrews@integralblue.com>2009-08-26 15:40:51 -0400
committerCraig Andrews <candrews@integralblue.com>2009-08-26 15:40:51 -0400
commit6d60d74093005992701418edda5be4422e46262f (patch)
tree73db603d3b8573a8ef374a21c70c4adae58165a7 /lib/twitterapi.php
parentd9e8dabaf4c5b38712a3e3ce97b45c5effee4bad (diff)
Display linked oembed resources as enclosures if they are of non-html mime types
Diffstat (limited to 'lib/twitterapi.php')
-rw-r--r--lib/twitterapi.php9
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/twitterapi.php b/lib/twitterapi.php
index 583007208..e0087e689 100644
--- a/lib/twitterapi.php
+++ b/lib/twitterapi.php
@@ -274,11 +274,12 @@ class TwitterapiAction extends Action
$enclosures = array();
foreach ($attachments as $attachment) {
- if ($attachment->isEnclosure()) {
+ $enclosure_o=$attachment->getEnclosure();
+ if ($enclosure_o) {
$enclosure = array();
- $enclosure['url'] = $attachment->url;
- $enclosure['mimetype'] = $attachment->mimetype;
- $enclosure['size'] = $attachment->size;
+ $enclosure['url'] = $enclosure_o->url;
+ $enclosure['mimetype'] = $enclosure_o->mimetype;
+ $enclosure['size'] = $enclosure_o->size;
$enclosures[] = $enclosure;
}
}