mirror of
https://github.com/DrKLO/Telegram.git
synced 2024-12-22 06:25:14 +01:00
Fix apkdiff not checking entire files
This commit is contained in:
parent
31736964fa
commit
7fb9f0b856
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue