Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/add-test-coverage' into add-test…
Browse files Browse the repository at this point in the history
…-coverage
  • Loading branch information
murdercode committed Mar 2, 2024
2 parents c7b5108 + e645425 commit b385c90
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Readability.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ public function parse(string $content): self
$this->content->parse($content);
} catch (ParseException $e) {
$this->content = null;
error_log('Cannot parse: ' . $e->getMessage());
throw new Exception('Cannot parse: ' . $e->getMessage());
error_log('Cannot parse: '.$e->getMessage());
throw new Exception('Cannot parse: '.$e->getMessage());
}

return $this;
Expand Down

0 comments on commit b385c90

Please sign in to comment.