fix: remove redundant query= param from filter-specific metadata links on TFE page

Clicking orientation, AP program, finality, year, format, or keyword links
on the TFE page was passing both a dedicated filter param AND a query=
param. The query= text search doesn't look at the filter columns
(orientation, ap_program, etc.), so the AND combination yielded zero
results when the filter value didn't appear in title/authors/etc fields.

Also fix the language link: it was passing language as query= which
searches only title/authors/etc, not the languages column. Now uses
the dedicated language= param (DB layer already supported it, and
collectSearchParams now collects it).
This commit is contained in:
Pontoporeia
2026-07-10 17:20:21 +02:00
parent 14c21586c5
commit 6e1d54511d
6 changed files with 21 additions and 17 deletions
@@ -1018,7 +1018,7 @@
var input = document.getElementById("tfe-files-input");
console.log(
"[pt-relink] looking for input | inputId=tfe-files-input | found=" + !!input,
`[pt-relink] looking for input | inputId=tfe-files-input | found=${!!input}`,
);
var closeModal = () => {
var modal = document.getElementById("peertube-relink-modal");