Fix Radarr settings no longer initialized in settings page

This commit is contained in:
Florian Dupret 2022-03-03 18:05:05 +01:00
parent 6571bb7b98
commit 27993f5a30

View file

@ -39,6 +39,14 @@ export class RadarrFormComponent implements OnInit {
{ name: "In Cinemas", value: "InCinemas" },
{ name: "Physical / Web", value: "Released" },
];
if (this.form.controls.defaultQualityProfile.value) {
this.getProfiles(this.form);
}
if (this.form.controls.defaultRootPath.value) {
this.getRootFolders(this.form);
}
}
public toggleValidators() {