Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/commit/0bbf5c1b562112d9b226226f19f9f55daf843dd2?style=split&whitespace=ignore-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

added null check to to prevent crash when loading couchpotato settings for the first time

pull/4245/head
stefangross 4 years ago
parent a9bbd55c05
commit 0bbf5c1b56

@ -55,7 +55,7 @@
<mat-form-field appearance="outline"> <mat-form-field appearance="outline">
<mat-label>Quality Profiles</mat-label> <mat-label>Quality Profiles</mat-label>
<mat-select formControlName="defaultProfileId"> <mat-select formControlName="defaultProfileId">
<mat-option *ngFor="let profile of profiles.list" value="{{profile._id}}">{{profile.label}}</mat-option> <mat-option *ngFor="let profile of profiles?.list" value="{{profile._id}}">{{profile.label}}</mat-option>
</mat-select> </mat-select>
<mat-error>A Default Quality Profile is required</mat-error> <mat-error>A Default Quality Profile is required</mat-error>
</mat-form-field> </mat-form-field>

Loading…
Cancel
Save