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)