mirror of
				https://github.com/reality/dbot.git
				synced 2025-11-04 08:37:40 +01:00 
			
		
		
		
	Merge branch 'upstream' of https://github.com/zuzak/depressionbot
This commit is contained in:
		
						commit
						77490bbda5
					
				@ -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…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user