3
0
mirror of https://github.com/reality/dbot.git synced 2024-11-30 16:09:27 +01:00

fix for nowplaying

This commit is contained in:
reality 2015-05-06 18:17:06 +00:00
parent b440a232fc
commit b28a5f6655
2 changed files with 4 additions and 4 deletions

View File

@ -33,12 +33,12 @@ var radio = function(dbot) {
}.bind(this));
stream.on('metadata', function(metadata) {
var title = icecast.parseMetadata(metadata).StreamTitle;
this.title = icecast.parseMetadata(metadata).StreamTitle;
if(!_.isUndefined(title) && this.data['icy-name']) { // sowwy jesus
_.each(this.config.announce, function(a) {
dbot.say(a.server, a.name, dbot.t('now_playing', {
'name': this.data['icy-name'],
'song': title,
'song': this.title,
'url': this.data['icy-url']
}));
}, this);
@ -73,7 +73,7 @@ var radio = function(dbot) {
if(this.listening) {
event.reply(dbot.say(a.server, a.name, dbot.t('now_playing', {
'name': this.data['icy-name'],
'song': title,
'song': this.title,
'url': this.data['icy-url']
})));
} else {