Merge branch 'hotfix/0.5.19'

This commit is contained in:
Jonny Barnes 2017-06-27 17:29:29 +01:00
commit 4060ebf3dd
2 changed files with 5 additions and 2 deletions

View file

@ -70,10 +70,10 @@ class WebMention extends Model
$microformats['items'][0]['properties']['published'][0]
)->toDayDateTimeString();
} catch (\Exception $exception) {
$published = $webmention->updated_at->toDayDateTimeString();
$published = $this->updated_at->toDayDateTimeString();
}
} else {
$published = $webmention->updated_at->toDayDateTimeString();
$published = $this->updated_at->toDayDateTimeString();
}
return $published;

View file

@ -1,5 +1,8 @@
# Changelog
## Version 0.5.19 (2017-06-27)
- Fix error in App\\WebMention.php
## Version 0.5.18 (2017-06-23)
- Minor change in deploy script to speed things up