mirror of
https://github.com/reality/dbot.git
synced 2024-11-24 04:49:25 +01:00
remove one-word restriction on ~ud
There's undoubtedly a better way to do this, but it works. ~ud now allows more than one word to be sent to UD's servers.
This commit is contained in:
parent
ff6a296aea
commit
29899adfc0
@ -34,11 +34,12 @@ var link = function(dbot) {
|
||||
},
|
||||
|
||||
'~ud': function(event) {
|
||||
var reqUrl = 'http://api.urbandictionary.com/v0/define?term=' + event.params[1];
|
||||
var query = event.params.join(" ").substring(4);
|
||||
var reqUrl = 'http://api.urbandictionary.com/v0/define?term=' + encodeURI(query);
|
||||
request(reqUrl, function(error, response, body) {
|
||||
var result = JSON.parse(body);
|
||||
if(_.has(result, 'result_type') && result.result_type != 'no_results') {
|
||||
event.reply(event.params[1] + ': ' + result.list[0].definition);
|
||||
event.reply(query + ': ' + result.list[0].definition);
|
||||
} else {
|
||||
event.reply(event.user + ': No definition found.');
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user