Fix tags page
All checks were successful
continuous-integration/drone/pr Build is passing

This commit is contained in:
delliott 2024-08-28 11:33:50 +02:00
parent 01a4b942f8
commit 6c92c875b5
Signed by: delliott
SSH Key Fingerprint: SHA256:h5IC6Ec/o6ypmpM7ZdRqULGyG8dz4Jr5K192BAWAjoo

View File

@ -124,7 +124,7 @@ declare -A filecount
for section in "news" "events"; do
for tag in $(ls "${tagmaps}"); do
filecount["${tag}:${section}"]=$(grep "^${section}/" "${tagmaps}/${tag}" | wc --lines || true)
filecount["${tag}:${section}"]=$(grep "^fsfe.org/${section}/" "${tagmaps}/${tag}" | wc --lines || true)
done
done