mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-20 21:33:15 -07:00
bug: fixed compile errors
This commit is contained in:
parent
0fb29a0b16
commit
4eef0e6e21
1 changed files with 2 additions and 2 deletions
|
@ -26,12 +26,12 @@ export class MovieAdvancedOptionsComponent implements OnInit {
|
||||||
if (this.show4k) {
|
if (this.show4k) {
|
||||||
this.radarrService.getQualityProfiles4kFromSettings().subscribe(c => {
|
this.radarrService.getQualityProfiles4kFromSettings().subscribe(c => {
|
||||||
this.radarrProfiles = c;
|
this.radarrProfiles = c;
|
||||||
this.data.profiles4k = c;
|
this.data.profiles = c;
|
||||||
this.setQualityOverrides();
|
this.setQualityOverrides();
|
||||||
});
|
});
|
||||||
this.radarrService.getRootFolders4kFromSettings().subscribe(c => {
|
this.radarrService.getRootFolders4kFromSettings().subscribe(c => {
|
||||||
this.radarrRootFolders = c;
|
this.radarrRootFolders = c;
|
||||||
this.data.rootFolders4k = c;
|
this.data.rootFolders = c;
|
||||||
this.setRootFolderOverrides();
|
this.setRootFolderOverrides();
|
||||||
});
|
});
|
||||||
} else { // Currently show either 4k or normal, if it's a dual request there needs to be more work done to save the overrides for 4k separately
|
} else { // Currently show either 4k or normal, if it's a dual request there needs to be more work done to save the overrides for 4k separately
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue