Hotfix: not using correct variable name :(

This commit is contained in:
Jonny Barnes 2016-11-07 12:25:19 +00:00
parent f259f26c74
commit 7e9fb6d267
2 changed files with 4 additions and 1 deletions

View file

@ -107,7 +107,7 @@ class NotesController extends Controller
if (isset($microformats['items'][0]['properties']['published'][0])) {
$content['date'] = $carbon->parse($microformats['items'][0]['properties']['published'][0])->toDayDateTimeString();
} else {
$content['date'] = $note->webmention->updated_at->toDayDateTimeString();
$content['date'] = $webmention->updated_at->toDayDateTimeString();
}
$content['reply'] = $this->filterHTML($microformats['items'][0]['properties']['content'][0]['html']);
$replies[] = $content;

View file

@ -1,5 +1,8 @@
# Changelog
## Version 0.0.15.9 (2016-11-07)
- Hotfix: not using cerated variable of foreach loop
## Version 0.0.15.8 (2016-11-07)
- Hotfix: facebooks love-of appears as an in-reply-to without a published date