Table key strings
This commit is contained in:
parent
e475659978
commit
e8ac29d899
@ -33,10 +33,11 @@ function get_value(chat, value_name)
|
||||
end
|
||||
|
||||
function run(msg, matches)
|
||||
local chat_id = tostring(msg.to.id)
|
||||
if matches[1] == "!get" then
|
||||
return get_value(msg.to.id, nil)
|
||||
return get_value(chat_id, nil)
|
||||
end
|
||||
return get_value(msg.to.id, matches[1])
|
||||
return get_value(chat_id, matches[1])
|
||||
end
|
||||
|
||||
return {
|
||||
|
@ -17,7 +17,8 @@ function save_value(chat, text )
|
||||
end
|
||||
|
||||
function run(msg, matches)
|
||||
local text = save_value(msg.to.id, msg.text)
|
||||
local chat_id = tostring(msg.to.id)
|
||||
local text = save_value(chat_id, msg.text)
|
||||
return text
|
||||
end
|
||||
|
||||
|
Reference in New Issue
Block a user