Merge pull request #29 from TiagoDanin/FIX

Solved "Connection error."
This commit is contained in:
Drew 2016-02-13 06:42:42 -05:00
commit 64735e2ff9
2 changed files with 9 additions and 4 deletions

View File

@ -30,8 +30,13 @@ local action = function(msg)
local url = 'https://api.nasa.gov/planetary/apod?api_key=' .. config.nasa_api_key
if input then
url = url .. '&date=' .. URL.escape(input)
date = date .. input
if input:match('(%d+)%-(%d+)%-(%d+)$') then
url = url .. '&date=' .. URL.escape(input)
date = date .. input
else
sendMessage(msg.chat.id, doc, true, msg.message_id, true)
return
end
else
date = date .. os.date("%F")
end

View File

@ -26,10 +26,10 @@ local action = function(msg)
local source
if input then
if input:match('^r/.') then
url = 'http://www.reddit.com/' .. input .. '/.json?limit=' .. limit
url = 'http://www.reddit.com/' .. URL.escape(input) .. '/.json?limit=' .. limit
source = '*/r/' .. input:match('^r/(.+)') .. '*\n'
else
url = 'http://www.reddit.com/search.json?q=' .. input .. '&limit=' .. limit
url = 'http://www.reddit.com/search.json?q=' .. URL.escape(input) .. '&limit=' .. limit
source = '*reddit results for* _' .. input .. '_ *:*\n'
end
else