fix: format relative path
This commit is contained in:
parent
e1e34def8c
commit
239f166a14
1 changed files with 1 additions and 1 deletions
|
|
@ -202,7 +202,7 @@ def check_installed_extension(ext: InstallableExtension) -> bool:
|
||||||
os.path.join(settings.lnbits_data_folder, "extensions", "*.zip")
|
os.path.join(settings.lnbits_data_folder, "extensions", "*.zip")
|
||||||
)
|
)
|
||||||
|
|
||||||
if ext.zip_path not in zip_files:
|
if f"./{str(ext.zip_path)}" not in zip_files:
|
||||||
ext.download_archive()
|
ext.download_archive()
|
||||||
ext.extract_archive()
|
ext.extract_archive()
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue