update list, add id-id interactions

This commit is contained in:
muskit
2022-12-09 01:57:38 -08:00
parent 2a5ee3aa46
commit 114ad8fc91
4 changed files with 12 additions and 4 deletions
+2 -2
View File
@@ -162,10 +162,10 @@ class TalentTweet:
if other_id in talent_lists.holo_en or other_id in talent_lists.holo_id:
return True
if self.author_id in talent_lists.holo_id:
if other_id in talent_lists.niji_en:
if other_id in talent_lists.niji_en or other_id in talent_lists.niji_exid:
return True
if self.author_id in talent_lists.niji_exid:
if other_id in talent_lists.holo_en:
if other_id in talent_lists.holo_en or other_id in talent_lists.holo_id:
return True
return False
+1 -1
View File
@@ -220,7 +220,7 @@ class TwAPI:
f'{" ".join(mention_usernames)}\n'
)
ret += '\n'
ret += '(this is a misssed tweet)\n' if is_catchup else ''
ret += '(this is a missed tweet)\n' if is_catchup else ''
ret += f'{util.ttweet_to_url(ttweet)}'
return ret