From cebd15c57cacc5fc172ec042587f04cade2168fb Mon Sep 17 00:00:00 2001 From: Simon Hanna Date: Mon, 20 Aug 2018 14:09:45 +0200 Subject: [PATCH] Search works --- src/app/openlp.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/openlp.service.ts b/src/app/openlp.service.ts index 3f683c0..065cc86 100644 --- a/src/app/openlp.service.ts +++ b/src/app/openlp.service.ts @@ -188,7 +188,7 @@ export class OpenLPService { } */ search(plugin, text) { - return this.http.get(`${this.apiURL}/${plugin}/search`); + return this.http.get(`${this.apiURL}/${plugin}/search?q=${text}`); } /*