diff --git a/plugins/DDG/plugin.py b/plugins/DDG/plugin.py index a00c3642a..991e856b9 100644 --- a/plugins/DDG/plugin.py +++ b/plugins/DDG/plugin.py @@ -57,7 +57,7 @@ class DDG(callbacks.Plugin): def _ddgurl(text): # DuckDuckGo has a 'lite' site free of unparseable JavaScript # elements, so we'll use that to our advantage! - url = "https://duckduckgo.com/lite?" + urlencode({"q": text}) + url = "https://lite.duckduckgo.com/lite?" + urlencode({"q": text}) log.debug("DDG: Using URL %s for search %s", url, text)