From 8ef5380b941a8f1483ee5d30e61a5086e669b12e Mon Sep 17 00:00:00 2001 From: Vijay Raghavan Aravamudhan Date: Sat, 15 May 2021 18:34:25 +0530 Subject: Adding DuckDuckGo as an alternative search engine (#1414) * Adding DuckDuckGo as an alternative search engine. * Fixing review comments. * Fixing review comments. --- src/webview/recipe.js | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/webview/recipe.js') diff --git a/src/webview/recipe.js b/src/webview/recipe.js index 2319e8e2a..2701603cb 100644 --- a/src/webview/recipe.js +++ b/src/webview/recipe.js @@ -152,6 +152,7 @@ class RecipeController { () => this.settings.app.enableSpellchecking, () => this.settings.app.spellcheckerLanguage, () => this.spellcheckerLanguage, + () => this.settings.app.searchEngine, ); autorun(() => this.update()); @@ -230,6 +231,7 @@ class RecipeController { debug('System spellcheckerLanguage', this.settings.app.spellcheckerLanguage); debug('Service spellcheckerLanguage', this.settings.service.spellcheckerLanguage); debug('darkReaderSettigs', this.settings.service.darkReaderSettings); + debug('searchEngine', this.settings.app.searchEngine); if (this.userscript && this.userscript.internal_setSettings) { this.userscript.internal_setSettings(this.settings); -- cgit v1.2.3-54-g00ecf