Fix in-reply-to name in micropub client

This commit is contained in:
Jonny Barnes 2016-11-07 19:13:22 +00:00
parent 7ab03f8022
commit 2bf0553057
2 changed files with 5 additions and 2 deletions

View file

@ -154,7 +154,7 @@ class MicropubClientController extends Controller
if ($request->input('in-reply-to') != '') {
$multipart[] = [
'name' => 'in-reply-to',
'contents' => $request->input('reply-to'),
'contents' => $request->input('in-reply-to'),
];
}
if ($request->input('syndicate-to')) {