mod_storage_sql: Don't say 'Unknown command' if no command was given (fixes attempt to concatenate nil)

This commit is contained in:
Kim Alvefur 2016-12-01 10:02:01 +01:00
parent b07f05a3fb
commit f1ce52f17d

View file

@ -504,6 +504,8 @@ function module.command(arg)
upgrade_table(params, true);
end
print("All done!");
elseif command then
print("Unknown command: "..command);
else
print("Unknown command: "..command);
end