mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-19 12:59:39 -07:00
fix(sonarr): 🐛 Fixed an issue where the language list didn't correctly load for power users in the advanced options #4782
This commit is contained in:
parent
a40ab5cddf
commit
217367047d
1 changed files with 3 additions and 5 deletions
|
@ -65,11 +65,9 @@ export class AdminRequestDialogComponent implements OnInit {
|
||||||
if (this.data.type === RequestType.tvShow) {
|
if (this.data.type === RequestType.tvShow) {
|
||||||
this.sonarrEnabled = await this.sonarrService.isEnabled();
|
this.sonarrEnabled = await this.sonarrService.isEnabled();
|
||||||
if (this.sonarrEnabled) {
|
if (this.sonarrEnabled) {
|
||||||
this.settingsService.getSonarr().subscribe((settings: ISonarrSettings) => {
|
this.sonarrService.getV3LanguageProfilesWithoutSettings().subscribe((profiles: ILanguageProfiles[]) => {
|
||||||
this.sonarrService.getV3LanguageProfiles(settings).subscribe((profiles: ILanguageProfiles[]) => {
|
this.sonarrLanguageProfiles = profiles;
|
||||||
this.sonarrLanguageProfiles = profiles;
|
})
|
||||||
})
|
|
||||||
});
|
|
||||||
this.sonarrService.getQualityProfilesWithoutSettings().subscribe(c => {
|
this.sonarrService.getQualityProfilesWithoutSettings().subscribe(c => {
|
||||||
this.sonarrProfiles = c;
|
this.sonarrProfiles = c;
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue