Checkpoint before follow-up message

Co-authored-by: jxxghp <jxxghp@live.cn>
This commit is contained in:
Cursor Agent
2025-08-25 13:54:48 +00:00
parent 25289dad8a
commit cd7767b331
2 changed files with 2 additions and 2 deletions

View File

@@ -31,7 +31,7 @@ class NexusRabbitSiteUserInfo(SiteParserBase):
"page": 1,
"limit": 5000000,
"action": "userTorrentsList",
"data": {"type": "seeding", "id": int(self.userid) if self.userid and str(self.userid).isdigit() else 0},
"data": {"type": "seeding", "id": int(self.userid)},
}
self._torrent_seeding_headers = {
"Content-Type": "application/json",

View File

@@ -76,7 +76,7 @@ class SynologyChat:
if image:
payload_data['file_url'] = quote(image)
if userid:
payload_data['user_ids'] = [int(userid) if str(userid).isdigit() else userid]
payload_data['user_ids'] = [int(userid)]
else:
userids = self.__get_bot_users()
if not userids: