Jan-Petter Gundersen
Jan-Petter Gundersen
I've seen it in some rare cases, but unfortunately never had the time to investigate it... This is indeed a bug.
Regex is not my expertise, but could this be as simple as using an non-valid URL character instead of "@"? All of the "@"s should already be escaped as far...
I just took a look at the issue again, unable to fix it (for now), but here is something to continue on for the next person who tries to fix...
Also applies to: ``` $this->assertFalse($parser->isAllowed('path')); $this->assertFalse($parser->isAllowed('*wildcard')); ``` I'm not sure why I didn't test that earlier... :confused: This is no longer an low-priority issue, but an huge and prioritized one!
I like the concept, but wouldn't it be better adding this as an optional plugin? (I'm not sure if plugins are supported by FreshRSS in any way, so this may...
PHP 7.x ?? Probably caused by the buggy [SimplePie_IRI](https://github.com/simplepie/simplepie/blob/master/library/SimplePie/IRI.php) class, see #443 and #520 (no fix available atm)
I'm using Guzzle, version 6, with custom handlers and middlewares. It opens up a whole new world of options and possibilities, so I'm supporting this migration 110%. I have a...
Seems like simplepie is using `v0.5.1` The only change is that `idna_convert()` has been renamed to `__constructor()`. [file diff](https://www.diffnow.com/?report=xuwct) We should at least be able to update to `v0.5.2`, preferably...
There's way too many DateTime formats used in feeds out there on the internet. Some use american, others european formats. If that wasn't enough, many websites create their own custom...
Yeah, I know, but the DateTime object needs an input format, to be able to parse the date. If the standardized formats are wrong, for some reason, so is the...