handle tweets self-quoting/replying

This commit is contained in:
muskit
2024-01-26 23:58:30 -08:00
parent 39cd02bce2
commit 5c70996067
2 changed files with 178 additions and 103 deletions
+1 -1
View File
@@ -119,7 +119,7 @@ def get_username(id):
def get_username_with_company(id):
company = talent_lists.talents_company.get(id, None)
return f'{get_username(id)} {f"({company})" if company is not None else ""}'
return f'@/{get_username(id)} {f"({company})" if company is not None else ""}'
def get_username_local(id: int):