diff --git a/app/Jobs/SaveProfileImage.php b/app/Jobs/SaveProfileImage.php index 07d29a3c..2a14bd6d 100644 --- a/app/Jobs/SaveProfileImage.php +++ b/app/Jobs/SaveProfileImage.php @@ -34,7 +34,7 @@ class SaveProfileImage implements ShouldQueue public function handle(Authorship $authorship) { try { - $author = $authorship->findAuthor($microformats); + $author = $authorship->findAuthor($this->microformats); } catch (AuthorshipParserException $e) { return; } diff --git a/changelog.md b/changelog.md index b16f4441..858b137a 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,8 @@ # Changelog +## Version {next} + - Fix an issue in the save profile image job (issue#23) + ## Version 0.0.14.4 (2016-10-19) - Fix a bad explode() call in the syndicate job