Skip to content

Commit

Permalink
Merge pull request #67 from Neocky/v1.7.3
Browse files Browse the repository at this point in the history
V1.7.3 - Fixed FTP error while checking
  • Loading branch information
Neocky authored Feb 12, 2023
2 parents 30f0dd9 + 3f4380a commit 6ea80b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugin/plugin_updatechecker.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,8 +225,8 @@ def egg_cracking_jar(plugin_file_name: str) -> str:
case "ftp":
path_temp_plugin_folder = create_temp_plugin_folder()
connection = ftp_create_connection()
ftp_download_file(connection, plugin_file_name)
path_plugin_jar = Path(f"{path_temp_plugin_folder}/{plugin_file_name}")
ftp_download_file(connection, path_plugin_jar, plugin_file_name)
case _:
path_plugin_folder = config_values.path_to_plugin_folder
path_plugin_jar = Path(f"{path_plugin_folder}/{plugin_file_name}")
Expand Down

1 comment on commit 6ea80b9

@DollarStoreCPU
Copy link

@DollarStoreCPU DollarStoreCPU commented on 6ea80b9 Jul 13, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The program says it's outdated on the latest version because settings.py still is set to 1.7.2. Just FYI

Edit: nm. There is an open issue for it already.

Please sign in to comment.