From 440c3635d10e3649ec703d57ee0ba2e719304140 Mon Sep 17 00:00:00 2001 From: tidusjar Date: Sat, 30 Jan 2021 23:41:58 +0000 Subject: [PATCH] Fixed methodname --- src/Ombi/ClientApp/src/app/wizard/services/wizard.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ombi/ClientApp/src/app/wizard/services/wizard.service.ts b/src/Ombi/ClientApp/src/app/wizard/services/wizard.service.ts index 0990ca384..d39bda9ed 100644 --- a/src/Ombi/ClientApp/src/app/wizard/services/wizard.service.ts +++ b/src/Ombi/ClientApp/src/app/wizard/services/wizard.service.ts @@ -12,7 +12,7 @@ export class WizardService extends ServiceHelpers { super(http, "/api/v2/wizard/", href); } - public async downvoteAlbum(config: IOmbiConfigModel): Promise { + public async addOmbiConfig(config: IOmbiConfigModel): Promise { return await this.http.post(`${this.url}config`, config, {headers: this.headers}).toPromise(); } }