Skip to content

Commit

Permalink
bug: fixed compile errors
Browse files Browse the repository at this point in the history
  • Loading branch information
tidusjar committed Sep 7, 2024
1 parent 0fb29a0 commit 4eef0e6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ export class MovieAdvancedOptionsComponent implements OnInit {
if (this.show4k) {
this.radarrService.getQualityProfiles4kFromSettings().subscribe(c => {
this.radarrProfiles = c;
this.data.profiles4k = c;
this.data.profiles = c;
this.setQualityOverrides();
});
this.radarrService.getRootFolders4kFromSettings().subscribe(c => {
this.radarrRootFolders = c;
this.data.rootFolders4k = c;
this.data.rootFolders = c;
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
Expand Down

0 comments on commit 4eef0e6

Please sign in to comment.