giventofly / freshrss-comicsinfeed

FreshRSS extension to display the full image of comics in the feed
MIT License
12 stars 8 forks source link

fix: Penny-Arcade parsing on Php 7 #7

Closed jackson15j closed 6 months ago

jackson15j commented 6 months ago

Recently switched from the LinuxServer - FreshRSS docker image to the official FreshRSS image.

Sadly this broke the parsing since str-contains() built-in didn't exist in PHP7 (which is what the official FreshRSS image is built on), but does exist in PHP8 (LinuxServer image is built on).

Naively picked one of the solutions from the comments in: PHP Docs: str-contains. To get the parsing working again.

jackson15j commented 6 months ago

Turns out I had an old FreshRSS docker container that was stuck on version 1.21.0 from last year.

Blown away and now on latest (1.24.0) with PHP8.2.18. This change is still working.