mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 05:53:33 -07:00
Added RSS support for torrents
This commit is contained in:
parent
89d603d71c
commit
82b06bab7a
59 changed files with 577 additions and 268 deletions
|
@ -17,11 +17,11 @@ define(
|
|||
var seasonField = this.column.get('seasonNumber') || 'seasonNumber';
|
||||
var episodeField = this.column.get('episodes') || 'episodeNumber';
|
||||
|
||||
if (this.cellValue) {
|
||||
if (this.model) {
|
||||
|
||||
var airDate = this.cellValue.get(airDateField);
|
||||
var seasonNumber = this.cellValue.get(seasonField);
|
||||
var episodes = this.cellValue.get(episodeField);
|
||||
var airDate = this.model.get(airDateField);
|
||||
var seasonNumber = this.model.get(seasonField);
|
||||
var episodes = this.model.get(episodeField);
|
||||
|
||||
var result = 'Unknown';
|
||||
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
{{#if nzbInfoUrl}}
|
||||
<dt>Info</dt>
|
||||
<dd><a href="{{nzbInfoUrl}}">{{nzbInfoUrl}}o</a></dd>
|
||||
<dd><a href="{{infoUrl}}">{{infoUrl}}o</a></dd>
|
||||
{{/if}}
|
||||
{{/with}}
|
||||
</dl>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue