mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_storage_sql: Fix for move of yes/no function (Thanks Kasim)
This commit is contained in:
parent
ab7abe3f8c
commit
d4c3f44ade
1 changed files with 2 additions and 2 deletions
|
@ -856,7 +856,7 @@ end
|
|||
|
||||
function module.command(arg)
|
||||
local config = require "core.configmanager";
|
||||
local prosodyctl = require "util.prosodyctl";
|
||||
local hi = require "util.human.io";
|
||||
local command = table.remove(arg, 1);
|
||||
if command == "upgrade" then
|
||||
-- We need to find every unique dburi in the config
|
||||
|
@ -871,7 +871,7 @@ function module.command(arg)
|
|||
end
|
||||
print("");
|
||||
print("Ensure you have working backups of the above databases before continuing! ");
|
||||
if not prosodyctl.show_yesno("Continue with the database upgrade? [yN]") then
|
||||
if not hi.show_yesno("Continue with the database upgrade? [yN]") then
|
||||
print("Ok, no upgrade. But you do have backups, don't you? ...don't you?? :-)");
|
||||
return;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue