mirror of
https://github.com/LC044/WeChatMsg
synced 2025-04-05 20:08:01 +08:00
适配微信4.0.3正式版,修复biz.db不存在的问题
This commit is contained in:
parent
5689de2ca6
commit
6dde500e07
@ -483,7 +483,9 @@ def dump_wechat_info_v4(pid) -> WeChatInfo | None:
|
||||
# print(wx_dir_cnt)
|
||||
if not wechat_info.wx_dir:
|
||||
return wechat_info
|
||||
db_file_path = os.path.join(wechat_info.wx_dir, 'biz', 'biz.db')
|
||||
db_file_path = os.path.join(wechat_info.wx_dir, 'favorite', 'favorite_fts.db')
|
||||
if not os.path.exists(db_file_path):
|
||||
db_file_path = os.path.join(wechat_info.wx_dir, 'head_image', 'head_image.db')
|
||||
with open(db_file_path, 'rb') as f:
|
||||
buf = f.read()
|
||||
wechat_info.key = get_key(pid, process_handle, buf)
|
||||
|
Loading…
Reference in New Issue
Block a user