This commit is contained in:
2026-05-25 13:10:00 +02:00
parent cce4eb3d57
commit 6622ea93aa
2 changed files with 4 additions and 4 deletions

View File

@@ -4368,7 +4368,7 @@ window.cancelAnimFrame = (function () {
suggestions.style.display = 'none';
highlightIdx = -1;
toggleSearch(false);
const target = `/tag/${encodeURIComponent('title:' + s.title)}/`;
const target = `/tag/title:${encodeURIComponent(s.title)}/`;
if (typeof loadPageAjax === 'function') {
loadPageAjax(target, true);
} else {
@@ -4549,7 +4549,7 @@ window.cancelAnimFrame = (function () {
suggestions.style.display = 'none';
highlightIdx = -1;
toggleSearch(false);
const target = `/tag/${encodeURIComponent('title:' + el.dataset.title)}/`;
const target = `/tag/title:${encodeURIComponent(el.dataset.title)}/`;
if (typeof loadPageAjax === 'function') {
loadPageAjax(target, true);
} else {
@@ -4580,7 +4580,7 @@ window.cancelAnimFrame = (function () {
if (tagItems.length === 0 && titleItems.length > 0) {
toggleSearch(false);
const q = input.value.trim();
const target = `/tag/${encodeURIComponent('title:' + q)}/`;
const target = `/tag/title:${encodeURIComponent(q)}/`;
if (typeof loadPageAjax === 'function') {
loadPageAjax(target, true);
} else {