fix: 修复视频标题去重逻辑,确保标题之间用逗号分隔
This commit is contained in:
parent
3fc18a2546
commit
f11e151832
@ -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 {}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user