diff --git a/lib/routes/google/news.ts b/lib/routes/google/news.ts index c0f2bb5a690c8f..025da3e1bf1e54 100644 --- a/lib/routes/google/news.ts +++ b/lib/routes/google/news.ts @@ -80,7 +80,9 @@ async function handler(ctx) { .map((author) => author.trim()) .filter((author) => { // Filter out empty strings and common suffixes - if (!author) {return false;} + if (!author) { + return false; + } const suffixes = ['et al', 'et al.']; return !suffixes.some((suffix) => author.toLowerCase().endsWith(suffix)); })