From f2d5c1324a237eda973aadedbfbc46a55cb22fdf Mon Sep 17 00:00:00 2001 From: Danilo Reyes Date: Sat, 28 Feb 2026 19:37:20 -0600 Subject: [PATCH] check for x.com and legacy twitter.com --- src/download/classes/user.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/download/classes/user.py b/src/download/classes/user.py index 6dd5c30..14079af 100644 --- a/src/download/classes/user.py +++ b/src/download/classes/user.py @@ -71,7 +71,7 @@ class User: """Writes the input line into it's respective list, depending on what website it belongs to.""" - if re.search("x", line): + if re.search(r"(x\\.com|twitter\\.com)", line): self.append_list("main", validate_x_link(line)) elif re.search(r"kemono\.party", line): self.append_list("kemono", line)