This commit is contained in:
2023-01-18 13:39:34 +07:00
parent 820bc70e9d
commit 1957f8265b
3 changed files with 3 additions and 3 deletions

View File

@ -4,4 +4,4 @@ Launcher = launcher.Launcher
Installer = installer.Installer
__version__ = "2.2.12"
__version__ = "2.2.13"

View File

@ -544,7 +544,7 @@ class Installer:
contents = await pkg_version.read_text()
async def verify_file(file_to_verify, md5):
file_md5 = asyncio.to_thread(calculate_md5, file_to_verify)
file_md5 = await asyncio.to_thread(calculate_md5, file_to_verify)
if file_md5 == md5:
return None
if ignore_mismatch: