Browse Source

fix backwards resolution

pull/82/head
Aaron Parecki 6 years ago
parent
commit
a81770aaef
No known key found for this signature in database GPG Key ID: 276C2817346D6056
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      controllers/micropub.php

+ 2
- 2
controllers/micropub.php View File

@ -26,7 +26,7 @@ $app->post('/micropub/post', function() use($app) {
$app->response()->body(json_encode(array( $app->response()->body(json_encode(array(
'request' => htmlspecialchars($r['request']), 'request' => htmlspecialchars($r['request']),
'response' => htmlspecialchars($r['response']), 'response' => htmlspecialchars($r['response']),
'location' => (isset($r['location']) ? Mf2\resolveUrl($r['location'], $user->micropub_endpoint) : null),
'location' => (isset($r['location']) ? Mf2\resolveUrl($user->micropub_endpoint, $r['location']) : null),
'error' => $r['error'], 'error' => $r['error'],
'curlinfo' => $r['curlinfo'] 'curlinfo' => $r['curlinfo']
))); )));
@ -69,7 +69,7 @@ $app->post('/micropub/multipart', function() use($app) {
$app->response()['Content-type'] = 'application/json'; $app->response()['Content-type'] = 'application/json';
$app->response()->body(json_encode(array( $app->response()->body(json_encode(array(
'response' => (isset($r['response']) ? htmlspecialchars($r['response']) : null), 'response' => (isset($r['response']) ? htmlspecialchars($r['response']) : null),
'location' => (isset($r['location']) ? Mf2\resolveUrl($r['location'], $user->micropub_endpoint) : null),
'location' => (isset($r['location']) ? Mf2\resolveUrl($user->micropub_endpoint, $r['location']) : null),
'error' => (isset($r['error']) ? $r['error'] : null), 'error' => (isset($r['error']) ? $r['error'] : null),
))); )));
} }

Loading…
Cancel
Save