diff options
author | Kim Alvefur <zash@zash.se> | 2019-01-18 18:30:41 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2019-01-18 18:30:41 +0100 |
commit | d254f7e101f76154ad5fb1a22964b74cba93d675 (patch) | |
tree | a1a842b61b7c6798e7a48f06441f08c864be1123 | |
parent | 3434e4560f79c834411e0c1d117a96e8b94ff4db (diff) | |
download | prosody-d254f7e101f76154ad5fb1a22964b74cba93d675.tar.gz prosody-d254f7e101f76154ad5fb1a22964b74cba93d675.zip |
prosodyctl: Fix module.command invocation (thanks woffs)
The first argument is already removed once since c7727c13260f
-rwxr-xr-x | prosodyctl | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -1300,8 +1300,6 @@ local command_runner = async.runner(function () end end - table.remove(arg, 1); - local module = modulemanager.get_module("*", module_name); if not module then show_message("Failed to load module '"..module_name.."': Unknown error"); |