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
Some regexes contain unicode characters, like this one: "^Podcast\u2019ler\/.*\\(.*\\)"
That results in an error:
php > echo preg_match("/^Podcast\u2019ler\/.*\\(.*\\)/", "Podcast’ler/1 (2)");
Warning: preg_match(): Compilation failed: PCRE2 does not support \F, \L, \l, \N{name}, \U, or \u at offset 10 in php shell code on line 1
The regexes must be converted to be PCRE2 compatible:
Some regexes contain unicode characters, like this one:
"^Podcast\u2019ler\/.*\\(.*\\)"
That results in an error:
The regexes must be converted to be PCRE2 compatible:
\u2019
to\x{2019}
(or any other unicode reference)u
modifier at the endFix should probably be applied around here
podlove-publisher/lib/model/user_agent.php
Lines 43 to 48 in 353fbcc
The text was updated successfully, but these errors were encountered: