|
@@ -39,7 +39,7 @@ class ProcessParams(object):
|
|
|
async def deal(self, data):
|
|
|
"""执行代码"""
|
|
|
params = self.get_params(data)
|
|
|
- title = params['title']
|
|
|
+ title = params['title'].split("@@")[-1]
|
|
|
kimi_title = params['kimi_title']
|
|
|
# account_name = params['accountName']
|
|
|
# ghId = params['ghId']
|
|
@@ -63,7 +63,7 @@ class ProcessParams(object):
|
|
|
)
|
|
|
|
|
|
if best_video_id:
|
|
|
- print(best_video_id)
|
|
|
+ print("best video id", best_video_id)
|
|
|
response = Functions().request_for_info(best_video_id)
|
|
|
productionCover = response['data'][0]['shareImgPath']
|
|
|
# productionName = response["data"][0]['title']
|