This commit is contained in:
xaoyaoo 2024-03-14 11:32:28 +08:00
parent f7baeeb530
commit c1ee7475f8
2 changed files with 2 additions and 2 deletions

View File

@ -76,7 +76,7 @@ qq交流群[276392799](https://s.xaoyo.top/gOLUDl) or [276392799](https://s.x
* 8.增加企业微信的支持 * 8.增加企业微信的支持
* 11.备份后的聊天记录,恢复到微信中 * 11.备份后的聊天记录,恢复到微信中
* 12.朋友圈的查看与备份 * 12.朋友圈的查看与备份
* 13.微信存储空间清理,减少微信占用空间 * 13.微信存储空间清理,减少微信占用空间(希望能通过选择某个人或群,把这群里的聊天记录中涉及的图片、视频、文件、语音等的媒体文件找出来,以群对话为单位有选择性的(比如时间段)或按群会话批量从电脑的缓存中清除。)
* 14.通过UI控制自动给指定人发送消息 * 14.通过UI控制自动给指定人发送消息
## 4. 其他 ## 4. 其他

View File

@ -459,7 +459,7 @@ def export():
msg_path = read_session(g.sf, "msg_path") msg_path = read_session(g.sf, "msg_path")
micro_path = read_session(g.sf, "micro_path") micro_path = read_session(g.sf, "micro_path")
media_path = read_session(g.sf, "media_path") media_path = read_session(g.sf, "media_path")
dbpaths = [msg_path, msg_path, micro_path] dbpaths = [msg_path, media_path, micro_path]
dbpaths = list(set(dbpaths)) dbpaths = list(set(dbpaths))
mergepath = merge_db(dbpaths, os.path.join(outpath, "merge.db"), start_time, end_time) mergepath = merge_db(dbpaths, os.path.join(outpath, "merge.db"), start_time, end_time)
return ReJson(0, body=mergepath) return ReJson(0, body=mergepath)