From 3ab17e9b926382ff405526f1ae38adf819f1fe77 Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Thu, 20 Oct 2016 15:57:11 +0100 Subject: [PATCH] Squashed commit of the following: commit cdf2b8ca2723cab5b5c13d305a49288b55ab2f48 Author: Jonny Barnes Date: Thu Oct 20 15:55:42 2016 +0100 Add chage to the log commit d8d62f2fa5ec5599134002cbb1ca11f81e0dfcc5 Author: Jonny Barnes Date: Thu Oct 20 15:53:03 2016 +0100 Fix a reference to an undefined variable --- app/Jobs/SaveProfileImage.php | 2 +- changelog.md | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) 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