last.fm -> librefm in bot replies
This commit is contained in:
parent
5b9761552c
commit
840cf2f799
@ -4,7 +4,7 @@ local doc = [[```
|
|||||||
Returns what you are or were last listening to. If you specify a username, info will be returned for that username.
|
Returns what you are or were last listening to. If you specify a username, info will be returned for that username.
|
||||||
|
|
||||||
/lfmset <username>
|
/lfmset <username>
|
||||||
Sets your last.fm username. Otherwise, /np will use your Telegram username. Use "/fmset -" to delete it.
|
Sets your libre.fm username. Otherwise, /np will use your Telegram username. Use "/fmset -" to delete it.
|
||||||
```]]
|
```]]
|
||||||
|
|
||||||
local triggers = {
|
local triggers = {
|
||||||
@ -26,10 +26,10 @@ local action = function(msg)
|
|||||||
sendMessage(msg.chat.id, doc, true, msg.message_id, true)
|
sendMessage(msg.chat.id, doc, true, msg.message_id, true)
|
||||||
elseif input == '-' then
|
elseif input == '-' then
|
||||||
lastfm[msg.from.id_str] = nil
|
lastfm[msg.from.id_str] = nil
|
||||||
sendReply(msg, 'Your last.fm username has been forgotten.')
|
sendReply(msg, 'Your libre.fm username has been forgotten.')
|
||||||
else
|
else
|
||||||
lastfm[msg.from.id_str] = input
|
lastfm[msg.from.id_str] = input
|
||||||
sendReply(msg, 'Your last.fm username has been set to "' .. input .. '".')
|
sendReply(msg, 'Your libre.fm username has been set to "' .. input .. '".')
|
||||||
end
|
end
|
||||||
save_data('librefm.json', lastfm)
|
save_data('librefm.json', lastfm)
|
||||||
return
|
return
|
||||||
@ -49,7 +49,7 @@ local action = function(msg)
|
|||||||
lastfm[msg.from.id_str] = username
|
lastfm[msg.from.id_str] = username
|
||||||
save_data('lastfm.json', lastfm)
|
save_data('lastfm.json', lastfm)
|
||||||
else
|
else
|
||||||
sendReply(msg, 'Please specify your last.fm username or set it with /lfmset.')
|
sendReply(msg, 'Please specify your libre.fm username or set it with /lfmset.')
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -63,7 +63,7 @@ local action = function(msg)
|
|||||||
|
|
||||||
local jdat = JSON.decode(jstr)
|
local jdat = JSON.decode(jstr)
|
||||||
if jdat.error then
|
if jdat.error then
|
||||||
sendReply(msg, 'Please specify your last.fm username or set it with /lfmset.')
|
sendReply(msg, 'Please specify your libre.fm username or set it with /lfmset.')
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user