increase notify message close time to 10 secs for too many soundcloud errors notification

This commit is contained in:
lone-cloud 2015-11-22 11:52:31 -08:00
parent d68d9b3e15
commit 60128c5fa9

View file

@ -155,7 +155,7 @@ export default Em.Component.extend(helperMixin, visualizerMixin, {
song = this.get('playQueue')[playQueuePointer];
if(this.get('soundCloudFuckUps') >= this.get('maxSoundCloudFuckUps')) {
this.get('notify').alert({html: this.get('tooManySoundCloudFuckUps')});
this.get('notify').alert({html: this.get('tooManySoundCloudFuckUps'), closeAfter: 10000});
this.send('play');
this.set('soundCloudFuckUps', 0);
} else {