1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-04 06:38:28 +02: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

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;
}); });
} }