1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-18 21:35:51 -04:00

Fixed: Calendar will show all downloading instead of top 15

This commit is contained in:
Mark McDowall
2014-03-21 23:15:13 -07:00
parent f52c151f0a
commit 30788a45e1
+1 -1
View File
@@ -18,7 +18,7 @@ define(
mode: 'client', mode: 'client',
findEpisode: function (episodeId) { findEpisode: function (episodeId) {
return _.find(this.models, function (queueModel) { return _.find(this.fullCollection.models, function (queueModel) {
return queueModel.get('episode').id === episodeId; return queueModel.get('episode').id === episodeId;
}); });
} }