fix(route/letterboxd): remove unwanted characters

This commit is contained in:
Tony 2025-09-26 03:08:48 +08:00
parent c990ef7ba5
commit 6bf9470b57
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ async function handler(ctx: Context) {
);
return {
title: $('title').text() || `${username}'s Watchlist • Letterboxd`,
title: $('title').text().trim().replaceAll('\u200E', '') || `${username}'s Watchlist • Letterboxd`,
link: currentUrl,
item: items,
allowEmpty: true,