3
0
mirror of https://github.com/reality/dbot.git synced 2025-01-26 03:54:18 +01:00

Merge branch 'betterusers' of https://github.com/reality/depressionbot into betterusers

This commit is contained in:
Luke Slater 2014-09-18 03:33:45 +00:00
commit 038af50eaa

View File

@ -21,13 +21,15 @@ var radio = function(dbot) {
stream.on('response', function(res) { stream.on('response', function(res) {
this.data = res.headers; this.data = res.headers;
_.each(this.config.announce, function(a) { if(res.headers['icy-name']) {
dbot.say(a.server, a.name, dbot.t('now_online', { _.each(this.config.announce, function(a) {
'name': res.headers['icy-name'], dbot.say(a.server, a.name, dbot.t('now_online', {
'desc': res.headers['icy-description'], 'name': res.headers['icy-name'],
'url': res.headers['icy-url'] 'desc': res.headers['icy-description'],
})); 'url': res.headers['icy-url']
}); }));
});
}
}.bind(this)); }.bind(this));
stream.on('metadata', function(metadata) { stream.on('metadata', function(metadata) {