diff --git a/pywxdump/wx_core/merge_db.py b/pywxdump/wx_core/merge_db.py index 73b24ea..1970bc9 100644 --- a/pywxdump/wx_core/merge_db.py +++ b/pywxdump/wx_core/merge_db.py @@ -429,7 +429,7 @@ def merge_real_time_db(key, merge_path: str, db_paths: [dict] or dict, real_time endbs.append(os.path.abspath(db_path)) endbs = '" "'.join(list(set(endbs))) - if not os.path.exists(real_time_exe_path): + if not os.path.exists(real_time_exe_path if real_time_exe_path else ""): # 获取当前文件夹路径 current_path = os.path.dirname(__file__) real_time_exe_path = os.path.join(current_path, "tools", "realTime.exe") diff --git a/pywxdump/wx_core/tools/realTime.exe b/pywxdump/wx_core/tools/realTime.exe index a15a43f..b16f86a 100644 Binary files a/pywxdump/wx_core/tools/realTime.exe and b/pywxdump/wx_core/tools/realTime.exe differ