From 30788a45e1b83e5cbcf376595495cf444881b5ab Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Fri, 21 Mar 2014 23:15:13 -0700 Subject: [PATCH] Fixed: Calendar will show all downloading instead of top 15 --- src/UI/History/Queue/QueueCollection.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/UI/History/Queue/QueueCollection.js b/src/UI/History/Queue/QueueCollection.js index b5c32e6a3..7d03486c9 100644 --- a/src/UI/History/Queue/QueueCollection.js +++ b/src/UI/History/Queue/QueueCollection.js @@ -18,7 +18,7 @@ define( mode: 'client', findEpisode: function (episodeId) { - return _.find(this.models, function (queueModel) { + return _.find(this.fullCollection.models, function (queueModel) { return queueModel.get('episode').id === episodeId; }); }