1
0
mirror of https://github.com/NekoX-Dev/NekoX.git synced 2024-11-16 17:16:37 +01:00

Merge pull request #1545 from janka102/patch-1

Fix apkdiff not checking entire files
This commit is contained in:
DrKLO 2020-01-14 08:54:49 +03:00 committed by GitHub
commit 6a10354656
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,7 +8,7 @@ def compareFiles(first, second):
if firstBytes != secondBytes:
return False
if firstBytes != b"" or secondBytes != b"":
if firstBytes == b"":
break
return True