From 7e056440aa8d2e5155b989f53c5d6c240a0459ba Mon Sep 17 00:00:00 2001 From: Egor Date: Sun, 22 Nov 2015 11:52:31 -0800 Subject: [PATCH] increase notify message close time to 10 secs for too many soundcloud errors notification --- app/pods/components/music-tab/component.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/pods/components/music-tab/component.js b/app/pods/components/music-tab/component.js index fe0f822..783f5de 100644 --- a/app/pods/components/music-tab/component.js +++ b/app/pods/components/music-tab/component.js @@ -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 {