mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-22 22:23:34 -07:00
Display TV show as requested if all episodes are requested
This used to work only if the request was approved too
This commit is contained in:
parent
e2be70dacf
commit
2f7c1c69e3
1 changed files with 1 additions and 1 deletions
|
@ -126,7 +126,7 @@ export class TvDetailsComponent implements OnInit {
|
|||
}
|
||||
|
||||
public allEpisodesRequested(): boolean {
|
||||
return this.tv.seasonRequests.every(e => e.episodes.every(x => x.approved));
|
||||
return this.tv.seasonRequests.every(e => e.episodes.every(x => x.approved || x.requested));
|
||||
}
|
||||
|
||||
private loadAdvancedInfo() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue