fix: 修复视频标题去重逻辑,确保标题之间用逗号分隔

This commit is contained in:
晓丰 2025-07-14 19:01:56 +08:00
parent 3fc18a2546
commit f11e151832

View File

@ -224,7 +224,7 @@ class DailymotionClient:
titles_list = [title.strip() for title in titles.split(',')] titles_list = [title.strip() for title in titles.split(',')]
unique_titles = list(set(titles_list)) unique_titles = list(set(titles_list))
unique_titles.sort() unique_titles.sort()
titles ="".join(unique_titles) # 去重 titles =",".join(unique_titles) # 去重
description = """We request that you take immediate actionto stop the infringing activity, take steps to ensure that iQIYI Content is notre-posted on, re-linked to, or otherwise available through your site. Pleaseinform us of the actions you have taken and their results. description = """We request that you take immediate actionto stop the infringing activity, take steps to ensure that iQIYI Content is notre-posted on, re-linked to, or otherwise available through your site. Pleaseinform us of the actions you have taken and their results.
1) please help remove these videos 1) please help remove these videos
2) The drama series titles are {} 2) The drama series titles are {}