Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/commit/97b9899fac92498472ffb7a81a53cdbcaace9d87 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed the preset themes not loading

pull/1805/head
tidusjar 7 years ago
parent 02135bc550
commit 97b9899fac

@ -116,7 +116,7 @@ export class SettingsService extends ServiceHelpers {
}
public getThemeContent(themeUrl: string): Observable<string> {
return this.http.get<string>(`${this.url}/themecontent?url=${themeUrl}`, {headers: this.headers});
return this.http.get(`${this.url}/themecontent?url=${themeUrl}`, {responseType: 'text', headers: this.headers});
}
public getEmailNotificationSettings(): Observable<IEmailNotificationSettings> {

Loading…
Cancel
Save