Browse Source

Merge a0c5f0e1fb into 4c704ee338

pull/131/merge
Jesse Morgan 3 years ago
committed by GitHub
parent
commit
85ed771870
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      lib/helpers.php

4
lib/helpers.php

@ -120,8 +120,8 @@ function micropub_media_post_for_user(&$user, $file) {
$r = micropub_post($user->micropub_media_endpoint, [], $user->micropub_access_token, $file, true, 'file');
// Check the response and look for a "Location" header containing the URL
if($r['response'] && preg_match('/Location: (.+)/', $r['response'], $match)) {
$r['location'] = trim($match[1]);
if($r['headers'] && $r['headers']['Location']) {
$r['location'] = $r['headers']['Location'];
} else {
$r['location'] = false;
}

Loading…
Cancel
Save