Error in Readability.js ?
I'm using readabilitpy 0.2.0 and I've found what I think is an error. In file Readability.js, in line 1227, there is the line:
values[name] = content.trim();
But content can be empty and it will produce an error. I've solved it in line 1219, adding a check for content:
if (elementProperty && content) {
But I'm not sure if it is the correct way to deal with the issue. I can send a PR if this is ok.
Best regards, thank you and keep up the good work!
Hi @fernand0. This project isn't being actively maintained. If you'd like to submit a PR, I'm happy to review it though.
Hello,
don't worry, it seems to be a problem of Mozilla readability.js (which your project seems to be installing using npm) and it seems to be solved now.
Thanks!