From f4ea629b28449331e7702a49c0b50b9713ceb4c1 Mon Sep 17 00:00:00 2001 From: xaoyaoo Date: Mon, 22 Jul 2024 17:03:18 +0800 Subject: [PATCH] =?UTF-8?q?fix=20=E9=83=A8=E5=88=86=E5=9B=BE=E7=89=87?= =?UTF-8?q?=E6=97=A0=E6=B3=95=E8=AF=BB=E5=8F=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pywxdump/dbpreprocess/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pywxdump/dbpreprocess/utils.py b/pywxdump/dbpreprocess/utils.py index 9f4d900..c761111 100644 --- a/pywxdump/dbpreprocess/utils.py +++ b/pywxdump/dbpreprocess/utils.py @@ -170,7 +170,7 @@ def dat2img(input_data): out_bytes = np.bitwise_xor(input_bytes, t) # 使用NumPy进行向量化的异或解密操作 md5 = get_md5(out_bytes) - return False, fomt, md5, out_bytes + return True, fomt, md5, out_bytes return False, False, False, False except ImportError: pass