Hey @rikudou@lemmings.world, the bot seems to be having some difficulties with correctly parsing articles from the ABC. It’s been doing it on a fair few posts (see below examples as well). As far as I can tell, it’s only occuring on articles from the ABC and I’m not entirely sure what’s causing it.
That’s the case, they removed one level of nesting from the html. Anyway, it doesn’t look for Article_Body class, but any class that starts with Article_Body. They’re using randomized class names with the prefix being constant, that’s why I have to do it that way. I’ve updated it to this horrible looking selector: div[class*="Article_body"] > div > p, div[class*="Article_body"] > div > ul:not([class*="ShareUtility"]) > li.
Hey @rikudou@lemmings.world, the bot seems to be having some difficulties with correctly parsing articles from the ABC. It’s been doing it on a fair few posts (see below examples as well). As far as I can tell, it’s only occuring on articles from the ABC and I’m not entirely sure what’s causing it.
Other examples:
https://lemmings.world/comment/8105800
https://lemmings.world/comment/8196693
Thanks for the report! It’s fixed now.
Thank you!
deleted by creator
That’s the case, they removed one level of nesting from the html. Anyway, it doesn’t look for
Article_Body
class, but any class that starts withArticle_Body
. They’re using randomized class names with the prefix being constant, that’s why I have to do it that way. I’ve updated it to this horrible looking selector:div[class*="Article_body"] > div > p, div[class*="Article_body"] > div > ul:not([class*="ShareUtility"]) > li
.deleted by creator