This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository fateserver.
commit d075040791c1af1890e150debee5ad5e68ea0d9a Author: Kacper Michajłow <[email protected]> AuthorDate: Thu Jul 30 01:03:02 2026 +0200 Commit: Kacper Michajłow <[email protected]> CommitDate: Wed Aug 12 00:42:15 2026 +0200 FATE: accept a "desc" prefix on any sort key The prefix shared the 10 character budget of the key it reverses, so the links the index itself generates for the Comment and Arch columns were rejected with "Invalid sort value". Signed-off-by: Kacper Michajłow <[email protected]> --- FATE.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/FATE.pm b/FATE.pm index d0f5508..6c1de15 100644 --- a/FATE.pm +++ b/FATE.pm @@ -514,7 +514,9 @@ sub safeparam($$) { } sub safeparam_sort() { - return safeparam_opt qr/[a-z]{1,10}(?:\/\/[a-z]{1,10})*/, 'sort'; + # The "desc" prefix reversing a key must not eat into its length budget. + my $key = qr/(?:desc)?[a-z]{1,10}/; + return safeparam_opt qr/$key(?:\/\/$key)*/, 'sort'; } sub safeparam_slot() { _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
