3
0
mirror of https://github.com/reality/dbot.git synced 2025-01-12 04:52:36 +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) {
this.data = res.headers;
_.each(this.config.announce, function(a) {
dbot.say(a.server, a.name, dbot.t('now_online', {
'name': res.headers['icy-name'],
'desc': res.headers['icy-description'],
'url': res.headers['icy-url']
}));
});
if(res.headers['icy-name']) {
_.each(this.config.announce, function(a) {
dbot.say(a.server, a.name, dbot.t('now_online', {
'name': res.headers['icy-name'],
'desc': res.headers['icy-description'],
'url': res.headers['icy-url']
}));
});
}
}.bind(this));
stream.on('metadata', function(metadata) {