fix: 错误的判空变量

This commit is contained in:
RockChinQ
2023-11-12 11:30:10 +08:00
parent 76d7db88ea
commit 89c83ebf20
+1 -1
View File
@@ -112,7 +112,7 @@ class PluginUpdateCommand(AbstractCommandNode):
else: else:
plugin_path_name = plugin_host.get_plugin_path_name_by_plugin_name(ctx.crt_params[0]) plugin_path_name = plugin_host.get_plugin_path_name_by_plugin_name(ctx.crt_params[0])
if ctx.crt_params[0] is not None: if plugin_path_name is not None:
plugin_host.update_plugin(ctx.crt_params[0]) plugin_host.update_plugin(ctx.crt_params[0])
updated.append(ctx.crt_params[0]) updated.append(ctx.crt_params[0])
else: else: