Closed VincentVanWijk closed 6 years ago
Im not expirienced with pull requests but the method body of crawlFailed in MailBrokenLinks.php is empty, causing the mail to only contain successfull crawl urls.
I added 2 lines to the method to make it work:
public function crawlFailed( UriInterface $url, RequestException $requestException, ?UriInterface $foundOnUrl = null ) { $url->foundOnUrl = $foundOnUrl; return parent::crawlFailed($url, $requestException, $foundOnUrl); }
Hope this helps, Vincent van Wijk
Will be fixed soon!
Im not expirienced with pull requests but the method body of crawlFailed in MailBrokenLinks.php is empty, causing the mail to only contain successfull crawl urls.
I added 2 lines to the method to make it work:
Hope this helps, Vincent van Wijk