Version 0.5.19

Fix an error in App\WebMention.php
 -----BEGIN PGP SIGNATURE-----
 
 iJUEABMKAB0WIQSEGbWh2ITK9LCvj7MbLHavsWyFmwUCWVKIAgAKCRAbLHavsWyF
 m7D+AX9RZxqcaw6K5+7qRDcQyss3AOXPtJVDGXpTRLNeoENCdbwdmu7+d3MtjFYl
 iFShLzEBgP/5u4opskFfI35GVsI8+q+OOU9gz7AJIbx31m7cvc7LUO2G7mCCVWLK
 vvhVWdRZPQ==
 =spWB
 -----END PGP SIGNATURE-----

Merge tag 'v0.5.19' into develop

Version 0.5.19

Fix an error in App\WebMention.php
This commit is contained in:
Jonny Barnes 2017-06-27 17:30:08 +01:00
commit 42a0f7c6c3
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