libaiya

Results 2 issues of libaiya

我试着用wechaty重的message.to_file_box方法解析文件,视频文件能够正常转换成file_box类型并且下载通过file_box.to_file()方法保存。但是图片保存时却遇到错误: internal error

出错代码: ```python await conversation.say('dong') file_box = FileBox.from_url( 'https://ss3.bdstatic.com/70cFv8Sh_Q1YnxGkpoWK1HF6hhy/it/' 'u=1116676390,2305043183&fm=26&gp=0.jpg', name='ding-dong.jpg') await conversation.say(file_box) ur_link=UrlLink.create("https://mp.weixin.qq.com/s/BqXNpYZXDgBrEQBzj_BB_w") await conversation.say(ur_link) ``` 错误信息: ```shell INFO:UrlLink:create url_link for https://mp.weixin.qq.com/s/BqXNpYZXDgBrEQBzj_BB_w ERROR:__main__:__init__() got an unexpected keyword argument 'thumbnailUrl' Traceback...

help wanted