lizihao001
Results
1
issues of
lizihao001
### Environment ```Markdown if msg.type() == MessageType.MESSAGE_TYPE_ATTACHMENT: print(f'接收的文件类型: {msg.type()}') print(f'接收的文件类型:{msg.type()}准备下载文件...') file_box = await msg.to_file_box() print(f'文件名:{file_box.name}') file_path = f'D:\WorkSpace\wechaty_file/{file_box.name}' await file_box.to_file(file_path,True) print(f'文件保存路径:{file_path}') else: print(f'3.13错误:{msg.type()}') print(f'错误:{traceback.print_exc()}') ``` ### Description ```Markdown 3.13错误:13 NoneType:...