fix(radarr): fixed radarr settings loading the folders on initialisation

Fix some Radarr settings no longer initialized in settings page
This commit is contained in:
Jamie 2022-03-03 20:08:07 +00:00 committed by GitHub
commit c9137aeb66
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -39,6 +39,14 @@ export class RadarrFormComponent implements OnInit {
{ name: "In Cinemas", value: "InCinemas" }, { name: "In Cinemas", value: "InCinemas" },
{ name: "Physical / Web", value: "Released" }, { 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() { public toggleValidators() {