increase notify message close time to 10 secs for too many soundcloud errors notification
This commit is contained in:
parent
62ef43611e
commit
7e056440aa
1 changed files with 1 additions and 1 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Reference in a new issue