mirror of
https://github.com/DrKLO/Telegram.git
synced 2024-12-22 06:25:14 +01:00
Merge pull request #1545 from janka102/patch-1
Fix apkdiff not checking entire files
This commit is contained in:
commit
6a10354656
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ def compareFiles(first, second):
|
||||||
if firstBytes != secondBytes:
|
if firstBytes != secondBytes:
|
||||||
return False
|
return False
|
||||||
|
|
||||||
if firstBytes != b"" or secondBytes != b"":
|
if firstBytes == b"":
|
||||||
break
|
break
|
||||||
|
|
||||||
return True
|
return True
|
||||||
|
|
Loading…
Reference in a new issue