fix(route/letterboxd): remove unwanted characters
This commit is contained in:
parent
c990ef7ba5
commit
6bf9470b57
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in New Issue