From 1973db28bfd8f2d1ef5aeef9683cef4089a3736e Mon Sep 17 00:00:00 2001 From: Louis Lam Date: Mon, 20 Mar 2023 18:02:24 +0800 Subject: [PATCH] minor --- extra/sort-contributors.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extra/sort-contributors.js b/extra/sort-contributors.js index 418bc233..b60d191f 100644 --- a/extra/sort-contributors.js +++ b/extra/sort-contributors.js @@ -13,7 +13,7 @@ lines = lines.filter((line) => line !== ""); lines = [ ...new Set(lines) ]; // Remove @weblate and @UptimeKumaBot -lines = lines.filter((line) => line !== "@weblate" && line !== "@UptimeKumaBot"); +lines = lines.filter((line) => line !== "@weblate" && line !== "@UptimeKumaBot" && line !== "@louislam"); // Sort the lines lines = lines.sort();