avoid adding the same file multiple times

to the chatbot's files_to_promote list
这个提交包含在:
binary-husky
2023-12-19 19:43:03 +08:00
父节点 a0bfa7ba1c
当前提交 f7588d4776
共有 3 个文件被更改,包括 3 次插入3 次删除

查看文件

@@ -583,7 +583,8 @@ def promote_file_to_downloadzone(file, rename_file=None, chatbot=None):
if chatbot is not None:
if 'files_to_promote' in chatbot._cookies: current = chatbot._cookies['files_to_promote']
else: current = []
chatbot._cookies.update({'files_to_promote': [new_path] + current})
if new_path not in current: # 避免把同一个文件添加多次
chatbot._cookies.update({'files_to_promote': [new_path] + current})
return new_path