You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when i use css2rss to get rumble videos as articles in rss guard using this as post-process script:
python css2rss.py "[role='listitem']" "h3" "img"
in 4.3.3 lite it correctly appends video thumbnails to the articles:
in 4.7.2 lite and 4.7.3 lite it doesn't:
How to reproduce the bug?
have 4.3.3 lite and 4.7.2 lite or 4.7.3 lite on your system
have css2rss installed
add a new feed with this url: https://rumble.com/c/LofiGirl
add python css2rss.py "[role='listitem']" "h3" "img" as post-process script
fetch the feed articles
see the difference between 4.3.3 lite and 4.7.2 lite/4.7.3 lite
What was the expected result?
4.7.2 lite to append the video thumbnails to articles (jpg urls)
What actually happened?
4.7.2 lite appends an unwanted section of the img item resulting in no video thumbnail appended
Debug log
N/A
Operating system and version
OS: Windows 10
RSS Guard version: 4.7.2 lite/4.7.3 lite
The text was updated successfully, but these errors were encountered:
Specifically, HTML contains "src=" part which is in fact no the real source of the picture - this piece of code is embedded JavaScript.
I tried to tweak the logic a bit and it all seems to work. Sadly the regular expression approach will not work for 100% of websites. If some problem arises in the future, I will have to re-think the approach and maybe use full XML/HTML parsing to extract source URLs of images.
Brief description of the issue
related to #8
when i use css2rss to get rumble videos as articles in rss guard using this as post-process script:
python css2rss.py "[role='listitem']" "h3" "img"
in 4.3.3 lite it correctly appends video thumbnails to the articles:
in 4.7.2 lite and 4.7.3 lite it doesn't:
How to reproduce the bug?
have 4.3.3 lite and 4.7.2 lite or 4.7.3 lite on your system
have css2rss installed
add a new feed with this url: https://rumble.com/c/LofiGirl
add
python css2rss.py "[role='listitem']" "h3" "img"
as post-process scriptfetch the feed articles
see the difference between 4.3.3 lite and 4.7.2 lite/4.7.3 lite
What was the expected result?
4.7.2 lite to append the video thumbnails to articles (jpg urls)
What actually happened?
4.7.2 lite appends an unwanted section of the
img
item resulting in no video thumbnail appendedDebug log
N/A
Operating system and version
The text was updated successfully, but these errors were encountered: