From 1bc6e7fc84096f4a83bc5c432ce070bb5fb87573 Mon Sep 17 00:00:00 2001 From: AlbinAlbyl <33070061+AlbinAlbyl@users.noreply.github.com> Date: Fri, 22 Feb 2019 19:58:11 +0000 Subject: [PATCH] Update Search.php to add Startpage Update Search.php to add Startpage as a Search Provider also change url to fix https://github.com/linuxserver/Heimdall/issues/327#issue-407794848 --- app/Search.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/app/Search.php b/app/Search.php index 13437bd7..89b08776 100644 --- a/app/Search.php +++ b/app/Search.php @@ -59,7 +59,14 @@ abstract class Search 'var' => 'q', 'method' => 'get', 'type' => 'standard', + ], + 'startpage' => [ + 'url' => 'https://www.startpage.com/do/search', + 'var' => 'q', + 'method' => 'get', + 'type' => 'standard', ], + ]; } @@ -132,4 +139,4 @@ abstract class Search } -} \ No newline at end of file +}