even more testing

This commit is contained in:
zefie
2025-08-12 18:40:06 -04:00
parent d5c04688e9
commit 01f698c9b3
3 changed files with 33 additions and 2 deletions

View File

@@ -3,7 +3,7 @@
try {
let relativePath = request_headers.request_url;
if (relativePath.indexOf('?') > -1) relativePath = relativePath.split('?')[0];
while (relativePath.endsWith('/')) relativePath = relativePath.substring(0, relativePath.length - 1);
while (relativePath.endsWith('/')) relativePath = relativePath.slice(0, relativePath.length - 1);
const dir = service_name + relativePath;
const num_per_page = 25;