From 97b9899fac92498472ffb7a81a53cdbcaace9d87 Mon Sep 17 00:00:00 2001 From: tidusjar Date: Fri, 1 Dec 2017 15:44:47 +0000 Subject: [PATCH] Fixed the preset themes not loading --- src/Ombi/ClientApp/app/services/settings.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ombi/ClientApp/app/services/settings.service.ts b/src/Ombi/ClientApp/app/services/settings.service.ts index 2868281f2..785e4e43f 100644 --- a/src/Ombi/ClientApp/app/services/settings.service.ts +++ b/src/Ombi/ClientApp/app/services/settings.service.ts @@ -116,7 +116,7 @@ export class SettingsService extends ServiceHelpers { } public getThemeContent(themeUrl: string): Observable { - return this.http.get(`${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 {